From 5e71a79b24c687677664ca560f315deb22903951 Mon Sep 17 00:00:00 2001 From: Lukas Pistrol Date: Mon, 30 May 2022 02:55:53 +0200 Subject: [PATCH 1/8] added spm support --- .gitignore | 1 + Package.swift | 0 bindings/swift/TreeSitterC/c.h | 16 ++++++++++++++++ 3 files changed, 17 insertions(+) create mode 100644 Package.swift create mode 100644 bindings/swift/TreeSitterC/c.h diff --git a/.gitignore b/.gitignore index 18ca5b037..bd77f411a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ node_modules build package-lock.json /target/ +.build/ \ No newline at end of file diff --git a/Package.swift b/Package.swift new file mode 100644 index 000000000..e69de29bb diff --git a/bindings/swift/TreeSitterC/c.h b/bindings/swift/TreeSitterC/c.h new file mode 100644 index 000000000..ae1557a41 --- /dev/null +++ b/bindings/swift/TreeSitterC/c.h @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_C_H_ +#define TREE_SITTER_C_H_ + +typedef struct TSLanguage TSLanguage; + +#ifdef __cplusplus +extern "C" { +#endif + +extern TSLanguage *tree_sitter_c(); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_C_H_ \ No newline at end of file From beb15168446b6ac4b0c451b64a2bfaa621341b7e Mon Sep 17 00:00:00 2001 From: Lukas Pistrol Date: Mon, 30 May 2022 02:56:20 +0200 Subject: [PATCH 2/8] added spm support --- Package.swift | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/Package.swift b/Package.swift index e69de29bb..c6c5376b6 100644 --- a/Package.swift +++ b/Package.swift @@ -0,0 +1,36 @@ +// swift-tools-version:5.3 +import PackageDescription + +let package = Package( + name: "TreeSitterC", + platforms: [.macOS(.v10_13), .iOS(.v11)], + products: [ + .library(name: "TreeSitterC", targets: ["TreeSitterC"]), + ], + dependencies: [], + targets: [ + .target(name: "TreeSitterC", + path: ".", + exclude: [ + "binding.gyp", + "bindings", + "Cargo.toml", + "examples", + "grammar.js", + "LICENSE", + "Makefile", + "package.json", + "README.md", + "src/grammar.json", + "src/node-types.json", + ], + sources: [ + "src/parser.c", + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")]) + ] +) \ No newline at end of file From 517bf92b2c5e8baa4241cbb8a49085ed7c3c48d4 Mon Sep 17 00:00:00 2001 From: Ben Dunkin Date: Fri, 8 Jul 2022 09:44:02 -0700 Subject: [PATCH 3/8] add the body label to for loops to make it the same as other loops (#110) --- grammar.js | 2 +- src/grammar.json | 8 ++- src/node-types.json | 20 +++--- src/parser.c | 135 +++++++++++++++++++++----------------- src/tree_sitter/parser.h | 1 + test/corpus/microsoft.txt | 2 +- 6 files changed, 95 insertions(+), 73 deletions(-) diff --git a/grammar.js b/grammar.js index d0435a2dd..e17d7b995 100644 --- a/grammar.js +++ b/grammar.js @@ -694,7 +694,7 @@ module.exports = grammar({ field('condition', optional($._expression)), ';', field('update', optional(choice($._expression, $.comma_expression))), ')', - $._statement + field('body', $._statement) ), return_statement: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index 0fc1bf995..4ace7182a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4241,8 +4241,12 @@ "value": ")" }, { - "type": "SYMBOL", - "name": "_statement" + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } } ] }, diff --git a/src/node-types.json b/src/node-types.json index 98d3edbd8..dfb94dc8d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1512,6 +1512,16 @@ "type": "for_statement", "named": true, "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + }, "condition": { "multiple": false, "required": false, @@ -1554,16 +1564,6 @@ } ] } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_statement", - "named": true - } - ] } }, { diff --git a/src/parser.c b/src/parser.c index d33ac1007..e064be97b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,7 +14,7 @@ #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 25 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 83 +#define PRODUCTION_ID_COUNT 85 enum { sym_identifier = 1, @@ -2048,18 +2048,20 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [67] = {.index = 112, .length = 1}, [69] = {.index = 113, .length = 3}, [70] = {.index = 116, .length = 1}, - [71] = {.index = 117, .length = 1}, - [72] = {.index = 118, .length = 2}, + [71] = {.index = 117, .length = 2}, + [72] = {.index = 119, .length = 1}, [73] = {.index = 120, .length = 2}, - [74] = {.index = 122, .length = 1}, - [75] = {.index = 123, .length = 1}, - [76] = {.index = 124, .length = 2}, - [77] = {.index = 126, .length = 2}, - [78] = {.index = 128, .length = 2}, - [79] = {.index = 130, .length = 3}, - [80] = {.index = 133, .length = 2}, - [81] = {.index = 135, .length = 2}, - [82] = {.index = 137, .length = 3}, + [74] = {.index = 122, .length = 2}, + [75] = {.index = 124, .length = 2}, + [76] = {.index = 126, .length = 2}, + [77] = {.index = 128, .length = 3}, + [78] = {.index = 131, .length = 3}, + [79] = {.index = 134, .length = 2}, + [80] = {.index = 136, .length = 3}, + [81] = {.index = 139, .length = 4}, + [82] = {.index = 143, .length = 3}, + [83] = {.index = 146, .length = 3}, + [84] = {.index = 149, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2244,39 +2246,54 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 4, .inherited = true}, {field_type, 2}, [116] = - {field_initializer, 2}, + {field_body, 5}, [117] = + {field_body, 5}, + {field_initializer, 2}, + [119] = {field_declarator, 4}, - [118] = + [120] = {field_declarator, 0}, {field_size, 3}, - [120] = + [122] = {field_designator, 0}, {field_value, 2}, - [122] = + [124] = + {field_body, 6}, {field_update, 4}, - [123] = + [126] = + {field_body, 6}, {field_condition, 3}, - [124] = + [128] = + {field_body, 6}, {field_initializer, 2}, {field_update, 4}, - [126] = + [131] = + {field_body, 6}, {field_condition, 3}, {field_initializer, 2}, - [128] = + [134] = + {field_body, 6}, + {field_initializer, 2}, + [136] = + {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [130] = + [139] = + {field_body, 7}, {field_condition, 3}, {field_initializer, 2}, {field_update, 5}, - [133] = + [143] = + {field_body, 7}, {field_initializer, 2}, {field_update, 5}, - [135] = + [146] = + {field_body, 7}, {field_condition, 4}, {field_initializer, 2}, - [137] = + [149] = + {field_body, 8}, {field_condition, 4}, {field_initializer, 2}, {field_update, 6}, @@ -74388,8 +74405,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 80), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 80), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 82), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 82), [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), @@ -74407,22 +74424,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 70), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 70), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 79), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 79), [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_non_case_statement, 2), [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_non_case_statement, 2), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 78), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 78), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 80), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 80), [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 79), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 79), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 83), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 83), [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 58), [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 58), [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), @@ -74437,24 +74454,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 62), [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 69), [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 69), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 70), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 70), [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 70), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 70), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 74), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 74), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 75), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 75), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 82), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 82), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 71), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 71), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 75), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 75), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 84), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 84), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 78), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 78), [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), @@ -74867,7 +74884,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 73), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 74), [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), @@ -75172,7 +75189,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 71), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 72), [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), @@ -75184,7 +75201,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 71), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 72), [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 63), @@ -75205,7 +75222,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 71), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 72), [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), @@ -75219,8 +75236,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 72), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 72), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 73), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 73), [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), @@ -75241,8 +75258,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 72), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 72), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), @@ -75256,8 +75273,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 72), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 72), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), @@ -75310,7 +75327,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 72), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 73), [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index cbbc7b4ee..2b14ac104 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -123,6 +123,7 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; }; /* diff --git a/test/corpus/microsoft.txt b/test/corpus/microsoft.txt index a3b4afc5b..c0dfc675a 100644 --- a/test/corpus/microsoft.txt +++ b/test/corpus/microsoft.txt @@ -117,7 +117,7 @@ void MyFunction(char * __uptr myValue); right: (identifier)) update: (update_expression argument: (identifier)) - (compound_statement + body: (compound_statement (expression_statement (assignment_expression left: (subscript_expression From 179b70c6be19ea9c1b7248f7c66b45157a0cdfa7 Mon Sep 17 00:00:00 2001 From: John Drouhard Date: Sat, 23 Jul 2022 14:31:26 -0500 Subject: [PATCH 4/8] Attributes: simplify attributed_statement by making it a valid type of non-case statement This also lets it bind to _any_ statement, which is necessary for some c++ attributes that can attach to the statement in if, while, and do/while statements. --- grammar.js | 9 +- src/grammar.json | 32 +- src/node-types.json | 32 +- src/parser.c | 80142 +++++++++++++++++------------------ test/corpus/statements.txt | 15 +- 5 files changed, 40092 insertions(+), 40138 deletions(-) diff --git a/grammar.js b/grammar.js index e17d7b995..8375585b1 100644 --- a/grammar.js +++ b/grammar.js @@ -46,8 +46,8 @@ module.exports = grammar({ [$._type_specifier, $._expression, $.macro_type_specifier], [$._type_specifier, $.macro_type_specifier], [$.sized_type_specifier], + [$.attributed_statement], [$._declaration_modifiers, $.attributed_statement], - [$._declaration_modifiers, $.attributed_non_case_statement], ], word: $ => $.identifier, @@ -601,17 +601,13 @@ module.exports = grammar({ $._statement ), - attributed_non_case_statement: $ => seq( - repeat1($.attribute_declaration), - $._non_case_statement - ), - _statement: $ => choice( $.case_statement, $._non_case_statement ), _non_case_statement: $ => choice( + $.attributed_statement, $.labeled_statement, $.compound_statement, $.expression_statement, @@ -663,7 +659,6 @@ module.exports = grammar({ ), ':', repeat(choice( - alias($.attributed_non_case_statement, $.attributed_statement), $._non_case_statement, $.declaration, $.type_definition diff --git a/src/grammar.json b/src/grammar.json index 4ace7182a..eafc61dfb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3795,22 +3795,6 @@ } ] }, - "attributed_non_case_statement": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "attribute_declaration" - } - }, - { - "type": "SYMBOL", - "name": "_non_case_statement" - } - ] - }, "_statement": { "type": "CHOICE", "members": [ @@ -3827,6 +3811,10 @@ "_non_case_statement": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "attributed_statement" + }, { "type": "SYMBOL", "name": "labeled_statement" @@ -4048,15 +4036,6 @@ "content": { "type": "CHOICE", "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "attributed_non_case_statement" - }, - "named": true, - "value": "attributed_statement" - }, { "type": "SYMBOL", "name": "_non_case_statement" @@ -6588,12 +6567,11 @@ "sized_type_specifier" ], [ - "_declaration_modifiers", "attributed_statement" ], [ "_declaration_modifiers", - "attributed_non_case_statement" + "attributed_statement" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index dfb94dc8d..567a2a41f 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -175,6 +175,10 @@ "type": "_statement", "named": true, "subtypes": [ + { + "type": "attributed_statement", + "named": true + }, { "type": "break_statement", "named": true @@ -1028,10 +1032,6 @@ "type": "_type_specifier", "named": true }, - { - "type": "attributed_statement", - "named": true - }, { "type": "declaration", "named": true @@ -1203,10 +1203,6 @@ "type": "_type_specifier", "named": true }, - { - "type": "attributed_statement", - "named": true - }, { "type": "declaration", "named": true @@ -2297,10 +2293,6 @@ "type": "_type_specifier", "named": true }, - { - "type": "attributed_statement", - "named": true - }, { "type": "declaration", "named": true @@ -2364,10 +2356,6 @@ "type": "_type_specifier", "named": true }, - { - "type": "attributed_statement", - "named": true - }, { "type": "declaration", "named": true @@ -2520,10 +2508,6 @@ "type": "_type_specifier", "named": true }, - { - "type": "attributed_statement", - "named": true - }, { "type": "declaration", "named": true @@ -2612,10 +2596,6 @@ "type": "_type_specifier", "named": true }, - { - "type": "attributed_statement", - "named": true - }, { "type": "declaration", "named": true @@ -2910,10 +2890,6 @@ "type": "_type_specifier", "named": true }, - { - "type": "attributed_statement", - "named": true - }, { "type": "declaration", "named": true diff --git a/src/parser.c b/src/parser.c index e064be97b..4b7831814 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1459 -#define LARGE_STATE_COUNT 386 -#define SYMBOL_COUNT 267 +#define STATE_COUNT 1454 +#define LARGE_STATE_COUNT 382 +#define SYMBOL_COUNT 266 #define ALIAS_COUNT 3 #define TOKEN_COUNT 128 #define EXTERNAL_TOKEN_COUNT 0 @@ -222,70 +222,69 @@ enum { sym_parameter_list = 203, sym_parameter_declaration = 204, sym_attributed_statement = 205, - sym_attributed_non_case_statement = 206, - sym_labeled_statement = 207, - sym_expression_statement = 208, - sym_if_statement = 209, - sym_switch_statement = 210, - sym_case_statement = 211, - sym_while_statement = 212, - sym_do_statement = 213, - sym_for_statement = 214, - sym_return_statement = 215, - sym_break_statement = 216, - sym_continue_statement = 217, - sym_goto_statement = 218, - sym__expression = 219, - sym_comma_expression = 220, - sym_conditional_expression = 221, - sym_assignment_expression = 222, - sym_pointer_expression = 223, - sym_unary_expression = 224, - sym_binary_expression = 225, - sym_update_expression = 226, - sym_cast_expression = 227, - sym_type_descriptor = 228, - sym_sizeof_expression = 229, - sym_subscript_expression = 230, - sym_call_expression = 231, - sym_argument_list = 232, - sym_field_expression = 233, - sym_compound_literal_expression = 234, - sym_parenthesized_expression = 235, - sym_initializer_list = 236, - sym_initializer_pair = 237, - sym_subscript_designator = 238, - sym_field_designator = 239, - sym_char_literal = 240, - sym_concatenated_string = 241, - sym_string_literal = 242, - sym__empty_declaration = 243, - sym_macro_type_specifier = 244, - aux_sym_translation_unit_repeat1 = 245, - aux_sym_preproc_params_repeat1 = 246, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 247, - aux_sym_preproc_argument_list_repeat1 = 248, - aux_sym_declaration_repeat1 = 249, - aux_sym_type_definition_repeat1 = 250, - aux_sym_type_definition_repeat2 = 251, - aux_sym__declaration_specifiers_repeat1 = 252, - aux_sym_attribute_declaration_repeat1 = 253, - aux_sym_attributed_declarator_repeat1 = 254, - aux_sym_pointer_declarator_repeat1 = 255, - aux_sym_function_declarator_repeat1 = 256, - aux_sym_sized_type_specifier_repeat1 = 257, - aux_sym_enumerator_list_repeat1 = 258, - aux_sym_field_declaration_repeat1 = 259, - aux_sym_parameter_list_repeat1 = 260, - aux_sym_case_statement_repeat1 = 261, - aux_sym_argument_list_repeat1 = 262, - aux_sym_initializer_list_repeat1 = 263, - aux_sym_initializer_pair_repeat1 = 264, - aux_sym_concatenated_string_repeat1 = 265, - aux_sym_string_literal_repeat1 = 266, - alias_sym_field_identifier = 267, - alias_sym_statement_identifier = 268, - alias_sym_type_identifier = 269, + sym_labeled_statement = 206, + sym_expression_statement = 207, + sym_if_statement = 208, + sym_switch_statement = 209, + sym_case_statement = 210, + sym_while_statement = 211, + sym_do_statement = 212, + sym_for_statement = 213, + sym_return_statement = 214, + sym_break_statement = 215, + sym_continue_statement = 216, + sym_goto_statement = 217, + sym__expression = 218, + sym_comma_expression = 219, + sym_conditional_expression = 220, + sym_assignment_expression = 221, + sym_pointer_expression = 222, + sym_unary_expression = 223, + sym_binary_expression = 224, + sym_update_expression = 225, + sym_cast_expression = 226, + sym_type_descriptor = 227, + sym_sizeof_expression = 228, + sym_subscript_expression = 229, + sym_call_expression = 230, + sym_argument_list = 231, + sym_field_expression = 232, + sym_compound_literal_expression = 233, + sym_parenthesized_expression = 234, + sym_initializer_list = 235, + sym_initializer_pair = 236, + sym_subscript_designator = 237, + sym_field_designator = 238, + sym_char_literal = 239, + sym_concatenated_string = 240, + sym_string_literal = 241, + sym__empty_declaration = 242, + sym_macro_type_specifier = 243, + aux_sym_translation_unit_repeat1 = 244, + aux_sym_preproc_params_repeat1 = 245, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 246, + aux_sym_preproc_argument_list_repeat1 = 247, + aux_sym_declaration_repeat1 = 248, + aux_sym_type_definition_repeat1 = 249, + aux_sym_type_definition_repeat2 = 250, + aux_sym__declaration_specifiers_repeat1 = 251, + aux_sym_attribute_declaration_repeat1 = 252, + aux_sym_attributed_declarator_repeat1 = 253, + aux_sym_pointer_declarator_repeat1 = 254, + aux_sym_function_declarator_repeat1 = 255, + aux_sym_sized_type_specifier_repeat1 = 256, + aux_sym_enumerator_list_repeat1 = 257, + aux_sym_field_declaration_repeat1 = 258, + aux_sym_parameter_list_repeat1 = 259, + aux_sym_case_statement_repeat1 = 260, + aux_sym_argument_list_repeat1 = 261, + aux_sym_initializer_list_repeat1 = 262, + aux_sym_initializer_pair_repeat1 = 263, + aux_sym_concatenated_string_repeat1 = 264, + aux_sym_string_literal_repeat1 = 265, + alias_sym_field_identifier = 266, + alias_sym_statement_identifier = 267, + alias_sym_type_identifier = 268, }; static const char * const ts_symbol_names[] = { @@ -495,7 +494,6 @@ static const char * const ts_symbol_names[] = { [sym_parameter_list] = "parameter_list", [sym_parameter_declaration] = "parameter_declaration", [sym_attributed_statement] = "attributed_statement", - [sym_attributed_non_case_statement] = "attributed_statement", [sym_labeled_statement] = "labeled_statement", [sym_expression_statement] = "expression_statement", [sym_if_statement] = "if_statement", @@ -768,7 +766,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_parameter_list] = sym_parameter_list, [sym_parameter_declaration] = sym_parameter_declaration, [sym_attributed_statement] = sym_attributed_statement, - [sym_attributed_non_case_statement] = sym_attributed_statement, [sym_labeled_statement] = sym_labeled_statement, [sym_expression_statement] = sym_expression_statement, [sym_if_statement] = sym_if_statement, @@ -1664,10 +1661,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_attributed_non_case_statement] = { - .visible = true, - .named = true, - }, [sym_labeled_statement] = { .visible = true, .named = true, @@ -5418,7 +5411,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [18] = {.lex_state = 28}, [19] = {.lex_state = 28}, [20] = {.lex_state = 28}, - [21] = {.lex_state = 83}, + [21] = {.lex_state = 29}, [22] = {.lex_state = 83}, [23] = {.lex_state = 83}, [24] = {.lex_state = 83}, @@ -5435,10 +5428,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [35] = {.lex_state = 83}, [36] = {.lex_state = 83}, [37] = {.lex_state = 83}, - [38] = {.lex_state = 29}, - [39] = {.lex_state = 29}, + [38] = {.lex_state = 83}, + [39] = {.lex_state = 83}, [40] = {.lex_state = 83}, - [41] = {.lex_state = 83}, + [41] = {.lex_state = 29}, [42] = {.lex_state = 83}, [43] = {.lex_state = 28}, [44] = {.lex_state = 28}, @@ -5450,16 +5443,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [50] = {.lex_state = 83}, [51] = {.lex_state = 83}, [52] = {.lex_state = 83}, - [53] = {.lex_state = 29}, - [54] = {.lex_state = 29}, - [55] = {.lex_state = 83}, - [56] = {.lex_state = 83}, + [53] = {.lex_state = 83}, + [54] = {.lex_state = 83}, + [55] = {.lex_state = 29}, + [56] = {.lex_state = 29}, [57] = {.lex_state = 83}, - [58] = {.lex_state = 29}, + [58] = {.lex_state = 83}, [59] = {.lex_state = 29}, [60] = {.lex_state = 83}, [61] = {.lex_state = 83}, - [62] = {.lex_state = 83}, + [62] = {.lex_state = 29}, [63] = {.lex_state = 83}, [64] = {.lex_state = 83}, [65] = {.lex_state = 83}, @@ -5523,22 +5516,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [123] = {.lex_state = 28}, [124] = {.lex_state = 28}, [125] = {.lex_state = 28}, - [126] = {.lex_state = 28}, - [127] = {.lex_state = 29}, + [126] = {.lex_state = 83}, + [127] = {.lex_state = 83}, [128] = {.lex_state = 83}, [129] = {.lex_state = 83}, [130] = {.lex_state = 83}, - [131] = {.lex_state = 29}, - [132] = {.lex_state = 29}, - [133] = {.lex_state = 29}, + [131] = {.lex_state = 83}, + [132] = {.lex_state = 83}, + [133] = {.lex_state = 83}, [134] = {.lex_state = 83}, [135] = {.lex_state = 83}, [136] = {.lex_state = 83}, - [137] = {.lex_state = 29}, + [137] = {.lex_state = 83}, [138] = {.lex_state = 83}, [139] = {.lex_state = 83}, [140] = {.lex_state = 83}, - [141] = {.lex_state = 29}, + [141] = {.lex_state = 83}, [142] = {.lex_state = 83}, [143] = {.lex_state = 83}, [144] = {.lex_state = 83}, @@ -5546,19 +5539,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [146] = {.lex_state = 83}, [147] = {.lex_state = 83}, [148] = {.lex_state = 83}, - [149] = {.lex_state = 29}, + [149] = {.lex_state = 83}, [150] = {.lex_state = 83}, [151] = {.lex_state = 83}, - [152] = {.lex_state = 83}, - [153] = {.lex_state = 29}, - [154] = {.lex_state = 83}, - [155] = {.lex_state = 29}, + [152] = {.lex_state = 29}, + [153] = {.lex_state = 83}, + [154] = {.lex_state = 29}, + [155] = {.lex_state = 83}, [156] = {.lex_state = 29}, [157] = {.lex_state = 83}, [158] = {.lex_state = 83}, - [159] = {.lex_state = 83}, - [160] = {.lex_state = 83}, - [161] = {.lex_state = 29}, + [159] = {.lex_state = 29}, + [160] = {.lex_state = 29}, + [161] = {.lex_state = 83}, [162] = {.lex_state = 83}, [163] = {.lex_state = 83}, [164] = {.lex_state = 83}, @@ -5567,117 +5560,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [167] = {.lex_state = 83}, [168] = {.lex_state = 83}, [169] = {.lex_state = 29}, - [170] = {.lex_state = 83}, - [171] = {.lex_state = 29}, + [170] = {.lex_state = 29}, + [171] = {.lex_state = 83}, [172] = {.lex_state = 83}, [173] = {.lex_state = 83}, - [174] = {.lex_state = 83}, - [175] = {.lex_state = 83}, + [174] = {.lex_state = 29}, + [175] = {.lex_state = 29}, [176] = {.lex_state = 83}, [177] = {.lex_state = 83}, [178] = {.lex_state = 29}, - [179] = {.lex_state = 83}, - [180] = {.lex_state = 83}, - [181] = {.lex_state = 83}, + [179] = {.lex_state = 29}, + [180] = {.lex_state = 29}, + [181] = {.lex_state = 29}, [182] = {.lex_state = 83}, [183] = {.lex_state = 83}, - [184] = {.lex_state = 29}, + [184] = {.lex_state = 83}, [185] = {.lex_state = 83}, [186] = {.lex_state = 83}, - [187] = {.lex_state = 29}, + [187] = {.lex_state = 83}, [188] = {.lex_state = 83}, - [189] = {.lex_state = 29}, + [189] = {.lex_state = 83}, [190] = {.lex_state = 83}, - [191] = {.lex_state = 29}, - [192] = {.lex_state = 29}, + [191] = {.lex_state = 83}, + [192] = {.lex_state = 83}, [193] = {.lex_state = 29}, - [194] = {.lex_state = 83}, + [194] = {.lex_state = 29}, [195] = {.lex_state = 83}, - [196] = {.lex_state = 83}, + [196] = {.lex_state = 29}, [197] = {.lex_state = 83}, [198] = {.lex_state = 83}, [199] = {.lex_state = 83}, - [200] = {.lex_state = 83}, + [200] = {.lex_state = 29}, [201] = {.lex_state = 83}, [202] = {.lex_state = 83}, [203] = {.lex_state = 83}, - [204] = {.lex_state = 29}, - [205] = {.lex_state = 29}, + [204] = {.lex_state = 83}, + [205] = {.lex_state = 83}, [206] = {.lex_state = 83}, [207] = {.lex_state = 83}, - [208] = {.lex_state = 29}, - [209] = {.lex_state = 83}, + [208] = {.lex_state = 83}, + [209] = {.lex_state = 29}, [210] = {.lex_state = 83}, [211] = {.lex_state = 83}, - [212] = {.lex_state = 29}, - [213] = {.lex_state = 83}, - [214] = {.lex_state = 83}, - [215] = {.lex_state = 83}, + [212] = {.lex_state = 83}, + [213] = {.lex_state = 29}, + [214] = {.lex_state = 29}, + [215] = {.lex_state = 29}, [216] = {.lex_state = 29}, - [217] = {.lex_state = 29}, - [218] = {.lex_state = 83}, - [219] = {.lex_state = 83}, - [220] = {.lex_state = 29}, - [221] = {.lex_state = 29}, + [217] = {.lex_state = 83}, + [218] = {.lex_state = 29}, + [219] = {.lex_state = 29}, + [220] = {.lex_state = 83}, + [221] = {.lex_state = 83}, [222] = {.lex_state = 29}, [223] = {.lex_state = 29}, - [224] = {.lex_state = 83}, + [224] = {.lex_state = 29}, [225] = {.lex_state = 83}, [226] = {.lex_state = 83}, [227] = {.lex_state = 83}, [228] = {.lex_state = 83}, - [229] = {.lex_state = 29}, - [230] = {.lex_state = 29}, - [231] = {.lex_state = 29}, - [232] = {.lex_state = 29}, + [229] = {.lex_state = 83}, + [230] = {.lex_state = 83}, + [231] = {.lex_state = 83}, + [232] = {.lex_state = 83}, [233] = {.lex_state = 83}, - [234] = {.lex_state = 29}, - [235] = {.lex_state = 29}, - [236] = {.lex_state = 29}, + [234] = {.lex_state = 83}, + [235] = {.lex_state = 83}, + [236] = {.lex_state = 83}, [237] = {.lex_state = 83}, - [238] = {.lex_state = 29}, + [238] = {.lex_state = 83}, [239] = {.lex_state = 83}, [240] = {.lex_state = 83}, [241] = {.lex_state = 83}, [242] = {.lex_state = 83}, [243] = {.lex_state = 83}, [244] = {.lex_state = 83}, - [245] = {.lex_state = 83}, + [245] = {.lex_state = 29}, [246] = {.lex_state = 83}, [247] = {.lex_state = 83}, [248] = {.lex_state = 83}, [249] = {.lex_state = 29}, - [250] = {.lex_state = 29}, - [251] = {.lex_state = 29}, - [252] = {.lex_state = 83}, - [253] = {.lex_state = 29}, - [254] = {.lex_state = 83}, + [250] = {.lex_state = 83}, + [251] = {.lex_state = 83}, + [252] = {.lex_state = 29}, + [253] = {.lex_state = 83}, + [254] = {.lex_state = 29}, [255] = {.lex_state = 29}, [256] = {.lex_state = 83}, - [257] = {.lex_state = 29}, + [257] = {.lex_state = 83}, [258] = {.lex_state = 29}, [259] = {.lex_state = 83}, [260] = {.lex_state = 83}, [261] = {.lex_state = 83}, [262] = {.lex_state = 83}, - [263] = {.lex_state = 29}, - [264] = {.lex_state = 29}, + [263] = {.lex_state = 83}, + [264] = {.lex_state = 83}, [265] = {.lex_state = 83}, [266] = {.lex_state = 83}, [267] = {.lex_state = 29}, [268] = {.lex_state = 83}, - [269] = {.lex_state = 29}, + [269] = {.lex_state = 83}, [270] = {.lex_state = 83}, [271] = {.lex_state = 83}, [272] = {.lex_state = 83}, - [273] = {.lex_state = 29}, - [274] = {.lex_state = 83}, + [273] = {.lex_state = 83}, + [274] = {.lex_state = 29}, [275] = {.lex_state = 83}, [276] = {.lex_state = 83}, - [277] = {.lex_state = 29}, + [277] = {.lex_state = 83}, [278] = {.lex_state = 83}, [279] = {.lex_state = 83}, - [280] = {.lex_state = 29}, + [280] = {.lex_state = 83}, [281] = {.lex_state = 83}, [282] = {.lex_state = 83}, [283] = {.lex_state = 83}, @@ -5686,7 +5679,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [286] = {.lex_state = 83}, [287] = {.lex_state = 83}, [288] = {.lex_state = 83}, - [289] = {.lex_state = 29}, + [289] = {.lex_state = 83}, [290] = {.lex_state = 83}, [291] = {.lex_state = 83}, [292] = {.lex_state = 83}, @@ -5695,12 +5688,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [295] = {.lex_state = 83}, [296] = {.lex_state = 83}, [297] = {.lex_state = 83}, - [298] = {.lex_state = 29}, + [298] = {.lex_state = 83}, [299] = {.lex_state = 83}, - [300] = {.lex_state = 29}, + [300] = {.lex_state = 83}, [301] = {.lex_state = 83}, - [302] = {.lex_state = 29}, - [303] = {.lex_state = 29}, + [302] = {.lex_state = 83}, + [303] = {.lex_state = 83}, [304] = {.lex_state = 83}, [305] = {.lex_state = 83}, [306] = {.lex_state = 83}, @@ -5708,7 +5701,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [308] = {.lex_state = 83}, [309] = {.lex_state = 83}, [310] = {.lex_state = 83}, - [311] = {.lex_state = 83}, + [311] = {.lex_state = 29}, [312] = {.lex_state = 83}, [313] = {.lex_state = 83}, [314] = {.lex_state = 83}, @@ -5718,75 +5711,75 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [318] = {.lex_state = 83}, [319] = {.lex_state = 83}, [320] = {.lex_state = 83}, - [321] = {.lex_state = 83}, - [322] = {.lex_state = 83}, - [323] = {.lex_state = 83}, + [321] = {.lex_state = 29}, + [322] = {.lex_state = 29}, + [323] = {.lex_state = 29}, [324] = {.lex_state = 83}, [325] = {.lex_state = 83}, [326] = {.lex_state = 83}, [327] = {.lex_state = 83}, [328] = {.lex_state = 83}, - [329] = {.lex_state = 83}, + [329] = {.lex_state = 29}, [330] = {.lex_state = 83}, [331] = {.lex_state = 83}, [332] = {.lex_state = 83}, [333] = {.lex_state = 83}, - [334] = {.lex_state = 83}, - [335] = {.lex_state = 83}, + [334] = {.lex_state = 29}, + [335] = {.lex_state = 29}, [336] = {.lex_state = 83}, - [337] = {.lex_state = 83}, - [338] = {.lex_state = 83}, + [337] = {.lex_state = 29}, + [338] = {.lex_state = 29}, [339] = {.lex_state = 83}, [340] = {.lex_state = 83}, [341] = {.lex_state = 83}, - [342] = {.lex_state = 83}, + [342] = {.lex_state = 29}, [343] = {.lex_state = 83}, [344] = {.lex_state = 83}, [345] = {.lex_state = 83}, - [346] = {.lex_state = 83}, + [346] = {.lex_state = 29}, [347] = {.lex_state = 83}, [348] = {.lex_state = 83}, - [349] = {.lex_state = 83}, + [349] = {.lex_state = 29}, [350] = {.lex_state = 83}, - [351] = {.lex_state = 83}, + [351] = {.lex_state = 29}, [352] = {.lex_state = 83}, [353] = {.lex_state = 83}, [354] = {.lex_state = 83}, [355] = {.lex_state = 83}, [356] = {.lex_state = 83}, - [357] = {.lex_state = 83}, + [357] = {.lex_state = 29}, [358] = {.lex_state = 83}, [359] = {.lex_state = 83}, - [360] = {.lex_state = 83}, + [360] = {.lex_state = 29}, [361] = {.lex_state = 83}, - [362] = {.lex_state = 83}, + [362] = {.lex_state = 29}, [363] = {.lex_state = 83}, [364] = {.lex_state = 83}, - [365] = {.lex_state = 83}, + [365] = {.lex_state = 29}, [366] = {.lex_state = 83}, [367] = {.lex_state = 83}, - [368] = {.lex_state = 83}, + [368] = {.lex_state = 29}, [369] = {.lex_state = 83}, - [370] = {.lex_state = 83}, - [371] = {.lex_state = 83}, - [372] = {.lex_state = 83}, - [373] = {.lex_state = 83}, + [370] = {.lex_state = 29}, + [371] = {.lex_state = 29}, + [372] = {.lex_state = 29}, + [373] = {.lex_state = 27}, [374] = {.lex_state = 83}, [375] = {.lex_state = 83}, [376] = {.lex_state = 83}, - [377] = {.lex_state = 27}, + [377] = {.lex_state = 83}, [378] = {.lex_state = 83}, [379] = {.lex_state = 83}, [380] = {.lex_state = 83}, [381] = {.lex_state = 83}, - [382] = {.lex_state = 83}, + [382] = {.lex_state = 27}, [383] = {.lex_state = 83}, [384] = {.lex_state = 83}, [385] = {.lex_state = 83}, - [386] = {.lex_state = 83}, - [387] = {.lex_state = 83}, - [388] = {.lex_state = 27}, - [389] = {.lex_state = 83}, + [386] = {.lex_state = 33}, + [387] = {.lex_state = 33}, + [388] = {.lex_state = 33}, + [389] = {.lex_state = 33}, [390] = {.lex_state = 33}, [391] = {.lex_state = 33}, [392] = {.lex_state = 33}, @@ -5798,50 +5791,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [398] = {.lex_state = 33}, [399] = {.lex_state = 33}, [400] = {.lex_state = 33}, - [401] = {.lex_state = 33}, - [402] = {.lex_state = 33}, - [403] = {.lex_state = 33}, - [404] = {.lex_state = 33}, + [401] = {.lex_state = 32}, + [402] = {.lex_state = 32}, + [403] = {.lex_state = 32}, + [404] = {.lex_state = 32}, [405] = {.lex_state = 32}, [406] = {.lex_state = 32}, [407] = {.lex_state = 32}, [408] = {.lex_state = 32}, - [409] = {.lex_state = 32}, - [410] = {.lex_state = 32}, + [409] = {.lex_state = 33}, + [410] = {.lex_state = 83}, [411] = {.lex_state = 32}, - [412] = {.lex_state = 32}, + [412] = {.lex_state = 83}, [413] = {.lex_state = 83}, [414] = {.lex_state = 32}, - [415] = {.lex_state = 33}, - [416] = {.lex_state = 83}, - [417] = {.lex_state = 83}, - [418] = {.lex_state = 32}, + [415] = {.lex_state = 83}, + [416] = {.lex_state = 32}, + [417] = {.lex_state = 34}, + [418] = {.lex_state = 34}, [419] = {.lex_state = 32}, [420] = {.lex_state = 34}, [421] = {.lex_state = 83}, - [422] = {.lex_state = 34}, - [423] = {.lex_state = 32}, - [424] = {.lex_state = 34}, + [422] = {.lex_state = 31}, + [423] = {.lex_state = 83}, + [424] = {.lex_state = 33}, [425] = {.lex_state = 83}, - [426] = {.lex_state = 33}, + [426] = {.lex_state = 83}, [427] = {.lex_state = 83}, [428] = {.lex_state = 83}, [429] = {.lex_state = 83}, - [430] = {.lex_state = 83}, - [431] = {.lex_state = 31}, + [430] = {.lex_state = 31}, + [431] = {.lex_state = 83}, [432] = {.lex_state = 83}, [433] = {.lex_state = 83}, - [434] = {.lex_state = 83}, - [435] = {.lex_state = 31}, - [436] = {.lex_state = 31}, - [437] = {.lex_state = 83}, - [438] = {.lex_state = 83}, + [434] = {.lex_state = 31}, + [435] = {.lex_state = 33}, + [436] = {.lex_state = 33}, + [437] = {.lex_state = 33}, + [438] = {.lex_state = 33}, [439] = {.lex_state = 31}, - [440] = {.lex_state = 33}, - [441] = {.lex_state = 33}, - [442] = {.lex_state = 33}, - [443] = {.lex_state = 31}, - [444] = {.lex_state = 33}, + [440] = {.lex_state = 31}, + [441] = {.lex_state = 83}, + [442] = {.lex_state = 83}, + [443] = {.lex_state = 83}, + [444] = {.lex_state = 83}, [445] = {.lex_state = 83}, [446] = {.lex_state = 83}, [447] = {.lex_state = 83}, @@ -5876,7 +5869,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [476] = {.lex_state = 83}, [477] = {.lex_state = 83}, [478] = {.lex_state = 83}, - [479] = {.lex_state = 83}, + [479] = {.lex_state = 32}, [480] = {.lex_state = 83}, [481] = {.lex_state = 83}, [482] = {.lex_state = 83}, @@ -5891,7 +5884,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [491] = {.lex_state = 83}, [492] = {.lex_state = 83}, [493] = {.lex_state = 83}, - [494] = {.lex_state = 32}, + [494] = {.lex_state = 83}, [495] = {.lex_state = 83}, [496] = {.lex_state = 83}, [497] = {.lex_state = 83}, @@ -5900,11 +5893,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [500] = {.lex_state = 83}, [501] = {.lex_state = 83}, [502] = {.lex_state = 83}, - [503] = {.lex_state = 83}, + [503] = {.lex_state = 32}, [504] = {.lex_state = 83}, - [505] = {.lex_state = 83}, + [505] = {.lex_state = 32}, [506] = {.lex_state = 83}, - [507] = {.lex_state = 83}, + [507] = {.lex_state = 32}, [508] = {.lex_state = 83}, [509] = {.lex_state = 83}, [510] = {.lex_state = 83}, @@ -5912,13 +5905,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [512] = {.lex_state = 83}, [513] = {.lex_state = 83}, [514] = {.lex_state = 83}, - [515] = {.lex_state = 83}, - [516] = {.lex_state = 32}, + [515] = {.lex_state = 34}, + [516] = {.lex_state = 83}, [517] = {.lex_state = 83}, [518] = {.lex_state = 83}, [519] = {.lex_state = 83}, [520] = {.lex_state = 83}, - [521] = {.lex_state = 34}, + [521] = {.lex_state = 83}, [522] = {.lex_state = 83}, [523] = {.lex_state = 83}, [524] = {.lex_state = 83}, @@ -5926,103 +5919,103 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [526] = {.lex_state = 83}, [527] = {.lex_state = 83}, [528] = {.lex_state = 83}, - [529] = {.lex_state = 83}, + [529] = {.lex_state = 32}, [530] = {.lex_state = 83}, - [531] = {.lex_state = 34}, + [531] = {.lex_state = 83}, [532] = {.lex_state = 32}, - [533] = {.lex_state = 83}, - [534] = {.lex_state = 32}, - [535] = {.lex_state = 83}, + [533] = {.lex_state = 32}, + [534] = {.lex_state = 83}, + [535] = {.lex_state = 32}, [536] = {.lex_state = 83}, - [537] = {.lex_state = 32}, - [538] = {.lex_state = 32}, + [537] = {.lex_state = 83}, + [538] = {.lex_state = 83}, [539] = {.lex_state = 32}, [540] = {.lex_state = 83}, - [541] = {.lex_state = 83}, + [541] = {.lex_state = 32}, [542] = {.lex_state = 83}, - [543] = {.lex_state = 83}, - [544] = {.lex_state = 83}, + [543] = {.lex_state = 32}, + [544] = {.lex_state = 32}, [545] = {.lex_state = 83}, [546] = {.lex_state = 83}, - [547] = {.lex_state = 83}, - [548] = {.lex_state = 83}, + [547] = {.lex_state = 32}, + [548] = {.lex_state = 32}, [549] = {.lex_state = 32}, - [550] = {.lex_state = 32}, + [550] = {.lex_state = 83}, [551] = {.lex_state = 32}, [552] = {.lex_state = 83}, [553] = {.lex_state = 83}, [554] = {.lex_state = 83}, - [555] = {.lex_state = 83}, - [556] = {.lex_state = 83}, + [555] = {.lex_state = 32}, + [556] = {.lex_state = 34}, [557] = {.lex_state = 83}, - [558] = {.lex_state = 83}, - [559] = {.lex_state = 32}, - [560] = {.lex_state = 83}, - [561] = {.lex_state = 83}, - [562] = {.lex_state = 83}, - [563] = {.lex_state = 32}, + [558] = {.lex_state = 32}, + [559] = {.lex_state = 83}, + [560] = {.lex_state = 32}, + [561] = {.lex_state = 32}, + [562] = {.lex_state = 32}, + [563] = {.lex_state = 83}, [564] = {.lex_state = 83}, - [565] = {.lex_state = 32}, - [566] = {.lex_state = 83}, - [567] = {.lex_state = 34}, + [565] = {.lex_state = 83}, + [566] = {.lex_state = 32}, + [567] = {.lex_state = 83}, [568] = {.lex_state = 83}, [569] = {.lex_state = 83}, [570] = {.lex_state = 83}, [571] = {.lex_state = 83}, [572] = {.lex_state = 83}, - [573] = {.lex_state = 83}, + [573] = {.lex_state = 32}, [574] = {.lex_state = 83}, [575] = {.lex_state = 32}, - [576] = {.lex_state = 32}, + [576] = {.lex_state = 83}, [577] = {.lex_state = 83}, - [578] = {.lex_state = 83}, - [579] = {.lex_state = 32}, + [578] = {.lex_state = 32}, + [579] = {.lex_state = 83}, [580] = {.lex_state = 83}, - [581] = {.lex_state = 32}, + [581] = {.lex_state = 34}, [582] = {.lex_state = 83}, - [583] = {.lex_state = 83}, - [584] = {.lex_state = 32}, + [583] = {.lex_state = 32}, + [584] = {.lex_state = 83}, [585] = {.lex_state = 32}, [586] = {.lex_state = 83}, - [587] = {.lex_state = 32}, - [588] = {.lex_state = 32}, + [587] = {.lex_state = 83}, + [588] = {.lex_state = 83}, [589] = {.lex_state = 32}, [590] = {.lex_state = 83}, - [591] = {.lex_state = 32}, + [591] = {.lex_state = 83}, [592] = {.lex_state = 32}, [593] = {.lex_state = 83}, [594] = {.lex_state = 83}, [595] = {.lex_state = 83}, - [596] = {.lex_state = 32}, + [596] = {.lex_state = 83}, [597] = {.lex_state = 83}, - [598] = {.lex_state = 83}, + [598] = {.lex_state = 32}, [599] = {.lex_state = 83}, [600] = {.lex_state = 32}, [601] = {.lex_state = 83}, - [602] = {.lex_state = 32}, + [602] = {.lex_state = 83}, [603] = {.lex_state = 83}, [604] = {.lex_state = 83}, - [605] = {.lex_state = 32}, + [605] = {.lex_state = 83}, [606] = {.lex_state = 83}, - [607] = {.lex_state = 32}, - [608] = {.lex_state = 32}, + [607] = {.lex_state = 83}, + [608] = {.lex_state = 83}, [609] = {.lex_state = 32}, - [610] = {.lex_state = 83}, - [611] = {.lex_state = 83}, - [612] = {.lex_state = 83}, + [610] = {.lex_state = 33}, + [611] = {.lex_state = 32}, + [612] = {.lex_state = 32}, [613] = {.lex_state = 83}, - [614] = {.lex_state = 32}, - [615] = {.lex_state = 33}, - [616] = {.lex_state = 32}, - [617] = {.lex_state = 83}, - [618] = {.lex_state = 32}, + [614] = {.lex_state = 83}, + [615] = {.lex_state = 32}, + [616] = {.lex_state = 83}, + [617] = {.lex_state = 32}, + [618] = {.lex_state = 33}, [619] = {.lex_state = 32}, - [620] = {.lex_state = 33}, + [620] = {.lex_state = 32}, [621] = {.lex_state = 32}, - [622] = {.lex_state = 83}, + [622] = {.lex_state = 32}, [623] = {.lex_state = 32}, [624] = {.lex_state = 32}, - [625] = {.lex_state = 83}, + [625] = {.lex_state = 32}, [626] = {.lex_state = 32}, [627] = {.lex_state = 32}, [628] = {.lex_state = 32}, @@ -6037,19 +6030,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [637] = {.lex_state = 32}, [638] = {.lex_state = 32}, [639] = {.lex_state = 32}, - [640] = {.lex_state = 32}, - [641] = {.lex_state = 32}, - [642] = {.lex_state = 32}, - [643] = {.lex_state = 32}, - [644] = {.lex_state = 32}, + [640] = {.lex_state = 33}, + [641] = {.lex_state = 33}, + [642] = {.lex_state = 33}, + [643] = {.lex_state = 33}, + [644] = {.lex_state = 33}, [645] = {.lex_state = 33}, [646] = {.lex_state = 33}, - [647] = {.lex_state = 33}, - [648] = {.lex_state = 33}, - [649] = {.lex_state = 33}, - [650] = {.lex_state = 33}, - [651] = {.lex_state = 33}, - [652] = {.lex_state = 83}, + [647] = {.lex_state = 83}, + [648] = {.lex_state = 32}, + [649] = {.lex_state = 32}, + [650] = {.lex_state = 32}, + [651] = {.lex_state = 32}, + [652] = {.lex_state = 32}, [653] = {.lex_state = 32}, [654] = {.lex_state = 32}, [655] = {.lex_state = 32}, @@ -6057,16 +6050,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [657] = {.lex_state = 32}, [658] = {.lex_state = 32}, [659] = {.lex_state = 32}, - [660] = {.lex_state = 32}, - [661] = {.lex_state = 32}, - [662] = {.lex_state = 32}, - [663] = {.lex_state = 32}, - [664] = {.lex_state = 32}, + [660] = {.lex_state = 33}, + [661] = {.lex_state = 83}, + [662] = {.lex_state = 33}, + [663] = {.lex_state = 33}, + [664] = {.lex_state = 33}, [665] = {.lex_state = 33}, [666] = {.lex_state = 33}, - [667] = {.lex_state = 83}, + [667] = {.lex_state = 33}, [668] = {.lex_state = 33}, - [669] = {.lex_state = 33}, + [669] = {.lex_state = 32}, [670] = {.lex_state = 33}, [671] = {.lex_state = 33}, [672] = {.lex_state = 33}, @@ -6081,55 +6074,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [681] = {.lex_state = 33}, [682] = {.lex_state = 33}, [683] = {.lex_state = 33}, - [684] = {.lex_state = 33}, + [684] = {.lex_state = 32}, [685] = {.lex_state = 33}, - [686] = {.lex_state = 33}, - [687] = {.lex_state = 33}, - [688] = {.lex_state = 32}, - [689] = {.lex_state = 32}, + [686] = {.lex_state = 32}, + [687] = {.lex_state = 32}, + [688] = {.lex_state = 33}, + [689] = {.lex_state = 33}, [690] = {.lex_state = 33}, - [691] = {.lex_state = 33}, - [692] = {.lex_state = 33}, - [693] = {.lex_state = 33}, + [691] = {.lex_state = 32}, + [692] = {.lex_state = 32}, + [693] = {.lex_state = 32}, [694] = {.lex_state = 32}, [695] = {.lex_state = 32}, - [696] = {.lex_state = 33}, + [696] = {.lex_state = 32}, [697] = {.lex_state = 32}, [698] = {.lex_state = 32}, - [699] = {.lex_state = 32}, - [700] = {.lex_state = 32}, + [699] = {.lex_state = 33}, + [700] = {.lex_state = 33}, [701] = {.lex_state = 32}, - [702] = {.lex_state = 32}, - [703] = {.lex_state = 32}, - [704] = {.lex_state = 32}, + [702] = {.lex_state = 33}, + [703] = {.lex_state = 33}, + [704] = {.lex_state = 33}, [705] = {.lex_state = 32}, [706] = {.lex_state = 32}, [707] = {.lex_state = 32}, - [708] = {.lex_state = 32}, + [708] = {.lex_state = 33}, [709] = {.lex_state = 32}, [710] = {.lex_state = 32}, [711] = {.lex_state = 32}, - [712] = {.lex_state = 33}, + [712] = {.lex_state = 32}, [713] = {.lex_state = 32}, [714] = {.lex_state = 32}, [715] = {.lex_state = 32}, - [716] = {.lex_state = 33}, + [716] = {.lex_state = 32}, [717] = {.lex_state = 32}, [718] = {.lex_state = 32}, [719] = {.lex_state = 32}, [720] = {.lex_state = 32}, [721] = {.lex_state = 32}, [722] = {.lex_state = 32}, - [723] = {.lex_state = 33}, + [723] = {.lex_state = 32}, [724] = {.lex_state = 32}, [725] = {.lex_state = 32}, [726] = {.lex_state = 32}, [727] = {.lex_state = 32}, [728] = {.lex_state = 32}, - [729] = {.lex_state = 33}, + [729] = {.lex_state = 32}, [730] = {.lex_state = 32}, [731] = {.lex_state = 32}, - [732] = {.lex_state = 33}, + [732] = {.lex_state = 32}, [733] = {.lex_state = 32}, [734] = {.lex_state = 32}, [735] = {.lex_state = 32}, @@ -6137,20 +6130,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [737] = {.lex_state = 32}, [738] = {.lex_state = 32}, [739] = {.lex_state = 32}, - [740] = {.lex_state = 32}, - [741] = {.lex_state = 32}, + [740] = {.lex_state = 34}, + [741] = {.lex_state = 34}, [742] = {.lex_state = 32}, [743] = {.lex_state = 32}, - [744] = {.lex_state = 32}, + [744] = {.lex_state = 31}, [745] = {.lex_state = 32}, [746] = {.lex_state = 32}, [747] = {.lex_state = 32}, [748] = {.lex_state = 32}, [749] = {.lex_state = 32}, [750] = {.lex_state = 32}, - [751] = {.lex_state = 34}, + [751] = {.lex_state = 32}, [752] = {.lex_state = 32}, - [753] = {.lex_state = 32}, + [753] = {.lex_state = 34}, [754] = {.lex_state = 32}, [755] = {.lex_state = 32}, [756] = {.lex_state = 32}, @@ -6161,40 +6154,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [761] = {.lex_state = 32}, [762] = {.lex_state = 32}, [763] = {.lex_state = 32}, - [764] = {.lex_state = 31}, + [764] = {.lex_state = 32}, [765] = {.lex_state = 32}, [766] = {.lex_state = 32}, [767] = {.lex_state = 32}, [768] = {.lex_state = 32}, - [769] = {.lex_state = 34}, - [770] = {.lex_state = 34}, + [769] = {.lex_state = 32}, + [770] = {.lex_state = 32}, [771] = {.lex_state = 32}, [772] = {.lex_state = 32}, [773] = {.lex_state = 32}, - [774] = {.lex_state = 33}, - [775] = {.lex_state = 33}, - [776] = {.lex_state = 32}, - [777] = {.lex_state = 32}, + [774] = {.lex_state = 32}, + [775] = {.lex_state = 32}, + [776] = {.lex_state = 34}, + [777] = {.lex_state = 34}, [778] = {.lex_state = 32}, [779] = {.lex_state = 32}, - [780] = {.lex_state = 32}, + [780] = {.lex_state = 34}, [781] = {.lex_state = 34}, - [782] = {.lex_state = 34}, - [783] = {.lex_state = 32}, - [784] = {.lex_state = 34}, - [785] = {.lex_state = 32}, + [782] = {.lex_state = 32}, + [783] = {.lex_state = 34}, + [784] = {.lex_state = 32}, + [785] = {.lex_state = 33}, [786] = {.lex_state = 34}, - [787] = {.lex_state = 34}, + [787] = {.lex_state = 32}, [788] = {.lex_state = 32}, - [789] = {.lex_state = 32}, - [790] = {.lex_state = 32}, + [789] = {.lex_state = 34}, + [790] = {.lex_state = 34}, [791] = {.lex_state = 32}, - [792] = {.lex_state = 34}, - [793] = {.lex_state = 32}, + [792] = {.lex_state = 32}, + [793] = {.lex_state = 34}, [794] = {.lex_state = 32}, [795] = {.lex_state = 32}, - [796] = {.lex_state = 34}, - [797] = {.lex_state = 32}, + [796] = {.lex_state = 32}, + [797] = {.lex_state = 34}, [798] = {.lex_state = 34}, [799] = {.lex_state = 32}, [800] = {.lex_state = 32}, @@ -6202,37 +6195,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [802] = {.lex_state = 32}, [803] = {.lex_state = 32}, [804] = {.lex_state = 32}, - [805] = {.lex_state = 32}, + [805] = {.lex_state = 31}, [806] = {.lex_state = 32}, [807] = {.lex_state = 32}, [808] = {.lex_state = 32}, - [809] = {.lex_state = 32}, - [810] = {.lex_state = 32}, + [809] = {.lex_state = 34}, + [810] = {.lex_state = 34}, [811] = {.lex_state = 34}, - [812] = {.lex_state = 32}, + [812] = {.lex_state = 34}, [813] = {.lex_state = 32}, [814] = {.lex_state = 32}, - [815] = {.lex_state = 34}, - [816] = {.lex_state = 32}, - [817] = {.lex_state = 34}, - [818] = {.lex_state = 34}, - [819] = {.lex_state = 34}, + [815] = {.lex_state = 32}, + [816] = {.lex_state = 34}, + [817] = {.lex_state = 32}, + [818] = {.lex_state = 32}, + [819] = {.lex_state = 32}, [820] = {.lex_state = 32}, [821] = {.lex_state = 32}, - [822] = {.lex_state = 32}, - [823] = {.lex_state = 32}, + [822] = {.lex_state = 34}, + [823] = {.lex_state = 31}, [824] = {.lex_state = 32}, [825] = {.lex_state = 32}, - [826] = {.lex_state = 34}, + [826] = {.lex_state = 32}, [827] = {.lex_state = 32}, - [828] = {.lex_state = 34}, - [829] = {.lex_state = 34}, - [830] = {.lex_state = 31}, - [831] = {.lex_state = 32}, - [832] = {.lex_state = 32}, - [833] = {.lex_state = 31}, - [834] = {.lex_state = 32}, - [835] = {.lex_state = 34}, + [828] = {.lex_state = 32}, + [829] = {.lex_state = 32}, + [830] = {.lex_state = 33}, + [831] = {.lex_state = 33}, + [832] = {.lex_state = 33}, + [833] = {.lex_state = 33}, + [834] = {.lex_state = 33}, + [835] = {.lex_state = 33}, [836] = {.lex_state = 33}, [837] = {.lex_state = 33}, [838] = {.lex_state = 33}, @@ -6263,16 +6256,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [863] = {.lex_state = 33}, [864] = {.lex_state = 33}, [865] = {.lex_state = 33}, - [866] = {.lex_state = 33}, + [866] = {.lex_state = 17}, [867] = {.lex_state = 33}, [868] = {.lex_state = 33}, [869] = {.lex_state = 33}, [870] = {.lex_state = 33}, - [871] = {.lex_state = 33}, + [871] = {.lex_state = 30}, [872] = {.lex_state = 33}, [873] = {.lex_state = 33}, [874] = {.lex_state = 33}, - [875] = {.lex_state = 17}, + [875] = {.lex_state = 33}, [876] = {.lex_state = 33}, [877] = {.lex_state = 33}, [878] = {.lex_state = 33}, @@ -6282,78 +6275,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [882] = {.lex_state = 33}, [883] = {.lex_state = 33}, [884] = {.lex_state = 33}, - [885] = {.lex_state = 33}, + [885] = {.lex_state = 30}, [886] = {.lex_state = 33}, [887] = {.lex_state = 33}, [888] = {.lex_state = 33}, - [889] = {.lex_state = 30}, + [889] = {.lex_state = 33}, [890] = {.lex_state = 33}, [891] = {.lex_state = 33}, - [892] = {.lex_state = 33}, + [892] = {.lex_state = 30}, [893] = {.lex_state = 33}, - [894] = {.lex_state = 30}, - [895] = {.lex_state = 33}, + [894] = {.lex_state = 33}, + [895] = {.lex_state = 30}, [896] = {.lex_state = 33}, - [897] = {.lex_state = 33}, - [898] = {.lex_state = 30}, + [897] = {.lex_state = 30}, + [898] = {.lex_state = 33}, [899] = {.lex_state = 30}, [900] = {.lex_state = 30}, - [901] = {.lex_state = 30}, - [902] = {.lex_state = 30}, - [903] = {.lex_state = 30}, - [904] = {.lex_state = 30}, + [901] = {.lex_state = 33}, + [902] = {.lex_state = 33}, + [903] = {.lex_state = 33}, + [904] = {.lex_state = 33}, [905] = {.lex_state = 30}, - [906] = {.lex_state = 33}, + [906] = {.lex_state = 30}, [907] = {.lex_state = 30}, - [908] = {.lex_state = 30}, + [908] = {.lex_state = 33}, [909] = {.lex_state = 30}, [910] = {.lex_state = 30}, [911] = {.lex_state = 30}, [912] = {.lex_state = 30}, [913] = {.lex_state = 33}, - [914] = {.lex_state = 33}, - [915] = {.lex_state = 33}, - [916] = {.lex_state = 33}, - [917] = {.lex_state = 30}, - [918] = {.lex_state = 33}, + [914] = {.lex_state = 30}, + [915] = {.lex_state = 30}, + [916] = {.lex_state = 30}, + [917] = {.lex_state = 33}, + [918] = {.lex_state = 30}, [919] = {.lex_state = 30}, [920] = {.lex_state = 30}, - [921] = {.lex_state = 30}, + [921] = {.lex_state = 33}, [922] = {.lex_state = 30}, - [923] = {.lex_state = 30}, - [924] = {.lex_state = 30}, - [925] = {.lex_state = 30}, + [923] = {.lex_state = 33}, + [924] = {.lex_state = 33}, + [925] = {.lex_state = 33}, [926] = {.lex_state = 30}, - [927] = {.lex_state = 30}, - [928] = {.lex_state = 30}, - [929] = {.lex_state = 30}, + [927] = {.lex_state = 33}, + [928] = {.lex_state = 33}, + [929] = {.lex_state = 33}, [930] = {.lex_state = 30}, - [931] = {.lex_state = 30}, + [931] = {.lex_state = 33}, [932] = {.lex_state = 33}, - [933] = {.lex_state = 33}, + [933] = {.lex_state = 30}, [934] = {.lex_state = 30}, - [935] = {.lex_state = 33}, + [935] = {.lex_state = 30}, [936] = {.lex_state = 30}, [937] = {.lex_state = 30}, [938] = {.lex_state = 33}, - [939] = {.lex_state = 33}, + [939] = {.lex_state = 30}, [940] = {.lex_state = 30}, [941] = {.lex_state = 30}, - [942] = {.lex_state = 33}, - [943] = {.lex_state = 33}, - [944] = {.lex_state = 33}, - [945] = {.lex_state = 33}, - [946] = {.lex_state = 33}, - [947] = {.lex_state = 33}, - [948] = {.lex_state = 33}, - [949] = {.lex_state = 33}, - [950] = {.lex_state = 30}, - [951] = {.lex_state = 33}, + [942] = {.lex_state = 30}, + [943] = {.lex_state = 30}, + [944] = {.lex_state = 30}, + [945] = {.lex_state = 30}, + [946] = {.lex_state = 30}, + [947] = {.lex_state = 17}, + [948] = {.lex_state = 17}, + [949] = {.lex_state = 17}, + [950] = {.lex_state = 17}, + [951] = {.lex_state = 17}, [952] = {.lex_state = 17}, [953] = {.lex_state = 17}, [954] = {.lex_state = 17}, [955] = {.lex_state = 17}, - [956] = {.lex_state = 33}, + [956] = {.lex_state = 17}, [957] = {.lex_state = 17}, [958] = {.lex_state = 17}, [959] = {.lex_state = 17}, @@ -6361,12 +6354,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [961] = {.lex_state = 17}, [962] = {.lex_state = 17}, [963] = {.lex_state = 17}, - [964] = {.lex_state = 33}, - [965] = {.lex_state = 17}, + [964] = {.lex_state = 17}, + [965] = {.lex_state = 33}, [966] = {.lex_state = 17}, [967] = {.lex_state = 17}, [968] = {.lex_state = 17}, - [969] = {.lex_state = 17}, + [969] = {.lex_state = 33}, [970] = {.lex_state = 17}, [971] = {.lex_state = 17}, [972] = {.lex_state = 17}, @@ -6374,11 +6367,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [974] = {.lex_state = 17}, [975] = {.lex_state = 17}, [976] = {.lex_state = 17}, - [977] = {.lex_state = 17}, - [978] = {.lex_state = 17}, - [979] = {.lex_state = 17}, - [980] = {.lex_state = 17}, - [981] = {.lex_state = 17}, + [977] = {.lex_state = 33}, + [978] = {.lex_state = 33}, + [979] = {.lex_state = 33}, + [980] = {.lex_state = 33}, + [981] = {.lex_state = 33}, [982] = {.lex_state = 33}, [983] = {.lex_state = 33}, [984] = {.lex_state = 33}, @@ -6397,82 +6390,82 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [997] = {.lex_state = 33}, [998] = {.lex_state = 33}, [999] = {.lex_state = 33}, - [1000] = {.lex_state = 33}, + [1000] = {.lex_state = 83}, [1001] = {.lex_state = 33}, [1002] = {.lex_state = 33}, [1003] = {.lex_state = 33}, [1004] = {.lex_state = 33}, [1005] = {.lex_state = 33}, [1006] = {.lex_state = 83}, - [1007] = {.lex_state = 83}, + [1007] = {.lex_state = 33}, [1008] = {.lex_state = 33}, - [1009] = {.lex_state = 33}, + [1009] = {.lex_state = 83}, [1010] = {.lex_state = 33}, - [1011] = {.lex_state = 33}, + [1011] = {.lex_state = 83}, [1012] = {.lex_state = 33}, [1013] = {.lex_state = 33}, [1014] = {.lex_state = 83}, - [1015] = {.lex_state = 33}, + [1015] = {.lex_state = 83}, [1016] = {.lex_state = 83}, - [1017] = {.lex_state = 33}, - [1018] = {.lex_state = 83}, + [1017] = {.lex_state = 83}, + [1018] = {.lex_state = 33}, [1019] = {.lex_state = 33}, [1020] = {.lex_state = 33}, - [1021] = {.lex_state = 83}, + [1021] = {.lex_state = 33}, [1022] = {.lex_state = 33}, [1023] = {.lex_state = 33}, - [1024] = {.lex_state = 33}, + [1024] = {.lex_state = 83}, [1025] = {.lex_state = 33}, - [1026] = {.lex_state = 83}, - [1027] = {.lex_state = 33}, + [1026] = {.lex_state = 33}, + [1027] = {.lex_state = 83}, [1028] = {.lex_state = 33}, [1029] = {.lex_state = 33}, - [1030] = {.lex_state = 33}, - [1031] = {.lex_state = 83}, + [1030] = {.lex_state = 83}, + [1031] = {.lex_state = 33}, [1032] = {.lex_state = 33}, [1033] = {.lex_state = 33}, - [1034] = {.lex_state = 83}, - [1035] = {.lex_state = 83}, + [1034] = {.lex_state = 33}, + [1035] = {.lex_state = 33}, [1036] = {.lex_state = 33}, - [1037] = {.lex_state = 83}, - [1038] = {.lex_state = 33}, + [1037] = {.lex_state = 33}, + [1038] = {.lex_state = 83}, [1039] = {.lex_state = 33}, [1040] = {.lex_state = 33}, [1041] = {.lex_state = 33}, [1042] = {.lex_state = 83}, - [1043] = {.lex_state = 33}, - [1044] = {.lex_state = 33}, + [1043] = {.lex_state = 83}, + [1044] = {.lex_state = 83}, [1045] = {.lex_state = 33}, [1046] = {.lex_state = 83}, - [1047] = {.lex_state = 33}, + [1047] = {.lex_state = 83}, [1048] = {.lex_state = 83}, [1049] = {.lex_state = 83}, - [1050] = {.lex_state = 83}, + [1050] = {.lex_state = 33}, [1051] = {.lex_state = 83}, [1052] = {.lex_state = 83}, - [1053] = {.lex_state = 83}, + [1053] = {.lex_state = 35}, [1054] = {.lex_state = 83}, - [1055] = {.lex_state = 33}, - [1056] = {.lex_state = 33}, + [1055] = {.lex_state = 83}, + [1056] = {.lex_state = 83}, [1057] = {.lex_state = 83}, [1058] = {.lex_state = 83}, [1059] = {.lex_state = 83}, - [1060] = {.lex_state = 35}, + [1060] = {.lex_state = 83}, [1061] = {.lex_state = 83}, - [1062] = {.lex_state = 83}, + [1062] = {.lex_state = 35}, [1063] = {.lex_state = 83}, [1064] = {.lex_state = 35}, [1065] = {.lex_state = 83}, [1066] = {.lex_state = 83}, [1067] = {.lex_state = 83}, - [1068] = {.lex_state = 35}, + [1068] = {.lex_state = 83}, [1069] = {.lex_state = 83}, - [1070] = {.lex_state = 83}, + [1070] = {.lex_state = 35}, [1071] = {.lex_state = 83}, [1072] = {.lex_state = 83}, [1073] = {.lex_state = 83}, [1074] = {.lex_state = 83}, - [1075] = {.lex_state = 35}, + [1075] = {.lex_state = 83}, [1076] = {.lex_state = 83}, [1077] = {.lex_state = 83}, [1078] = {.lex_state = 83}, @@ -6507,355 +6500,350 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1107] = {.lex_state = 83}, [1108] = {.lex_state = 83}, [1109] = {.lex_state = 83}, - [1110] = {.lex_state = 83}, - [1111] = {.lex_state = 83}, - [1112] = {.lex_state = 83}, + [1110] = {.lex_state = 28}, + [1111] = {.lex_state = 33}, + [1112] = {.lex_state = 33}, [1113] = {.lex_state = 83}, - [1114] = {.lex_state = 33}, - [1115] = {.lex_state = 83}, - [1116] = {.lex_state = 33}, - [1117] = {.lex_state = 28}, + [1114] = {.lex_state = 83}, + [1115] = {.lex_state = 22}, + [1116] = {.lex_state = 83}, + [1117] = {.lex_state = 22}, [1118] = {.lex_state = 83}, - [1119] = {.lex_state = 83}, - [1120] = {.lex_state = 22}, - [1121] = {.lex_state = 22}, - [1122] = {.lex_state = 83}, + [1119] = {.lex_state = 24}, + [1120] = {.lex_state = 83}, + [1121] = {.lex_state = 83}, + [1122] = {.lex_state = 24}, [1123] = {.lex_state = 83}, [1124] = {.lex_state = 22}, [1125] = {.lex_state = 83}, - [1126] = {.lex_state = 22}, - [1127] = {.lex_state = 24}, + [1126] = {.lex_state = 28}, + [1127] = {.lex_state = 83}, [1128] = {.lex_state = 83}, - [1129] = {.lex_state = 83}, - [1130] = {.lex_state = 24}, - [1131] = {.lex_state = 28}, + [1129] = {.lex_state = 22}, + [1130] = {.lex_state = 22}, + [1131] = {.lex_state = 83}, [1132] = {.lex_state = 24}, [1133] = {.lex_state = 83}, [1134] = {.lex_state = 83}, [1135] = {.lex_state = 83}, [1136] = {.lex_state = 83}, - [1137] = {.lex_state = 83}, - [1138] = {.lex_state = 22}, - [1139] = {.lex_state = 83}, - [1140] = {.lex_state = 83}, + [1137] = {.lex_state = 24}, + [1138] = {.lex_state = 83}, + [1139] = {.lex_state = 24}, + [1140] = {.lex_state = 24}, [1141] = {.lex_state = 83}, - [1142] = {.lex_state = 22}, + [1142] = {.lex_state = 83}, [1143] = {.lex_state = 83}, - [1144] = {.lex_state = 33}, - [1145] = {.lex_state = 22}, - [1146] = {.lex_state = 24}, - [1147] = {.lex_state = 24}, - [1148] = {.lex_state = 83}, - [1149] = {.lex_state = 83}, - [1150] = {.lex_state = 83}, - [1151] = {.lex_state = 83}, - [1152] = {.lex_state = 24}, - [1153] = {.lex_state = 24}, - [1154] = {.lex_state = 0}, + [1144] = {.lex_state = 83}, + [1145] = {.lex_state = 24}, + [1146] = {.lex_state = 33}, + [1147] = {.lex_state = 22}, + [1148] = {.lex_state = 22}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 28}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 33}, [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 28}, - [1160] = {.lex_state = 0}, + [1158] = {.lex_state = 33}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 17}, [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 28}, + [1163] = {.lex_state = 17}, [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 17}, + [1165] = {.lex_state = 28}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, + [1167] = {.lex_state = 17}, [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, + [1169] = {.lex_state = 28}, [1170] = {.lex_state = 33}, - [1171] = {.lex_state = 83}, - [1172] = {.lex_state = 17}, + [1171] = {.lex_state = 33}, + [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 28}, + [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 28}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 0}, + [1178] = {.lex_state = 17}, + [1179] = {.lex_state = 33}, + [1180] = {.lex_state = 28}, [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 33}, + [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 17}, + [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 83}, + [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 17}, - [1192] = {.lex_state = 28}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 33}, - [1195] = {.lex_state = 0}, + [1191] = {.lex_state = 83}, + [1192] = {.lex_state = 0}, + [1193] = {.lex_state = 28}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 33}, [1196] = {.lex_state = 28}, [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 33}, + [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, + [1200] = {.lex_state = 83}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 33}, - [1205] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 28}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 33}, - [1209] = {.lex_state = 0}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 33}, [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 28}, + [1211] = {.lex_state = 83}, + [1212] = {.lex_state = 23}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 23}, - [1215] = {.lex_state = 23}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 83}, - [1218] = {.lex_state = 33}, - [1219] = {.lex_state = 28}, - [1220] = {.lex_state = 33}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 23}, - [1223] = {.lex_state = 23}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 28}, + [1216] = {.lex_state = 83}, + [1217] = {.lex_state = 33}, + [1218] = {.lex_state = 83}, + [1219] = {.lex_state = 26}, + [1220] = {.lex_state = 23}, + [1221] = {.lex_state = 33}, + [1222] = {.lex_state = 83}, + [1223] = {.lex_state = 28}, [1224] = {.lex_state = 83}, - [1225] = {.lex_state = 83}, + [1225] = {.lex_state = 23}, [1226] = {.lex_state = 0}, [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 23}, + [1228] = {.lex_state = 83}, [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 23}, - [1231] = {.lex_state = 0}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 23}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 83}, - [1234] = {.lex_state = 23}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 83}, - [1239] = {.lex_state = 33}, - [1240] = {.lex_state = 23}, + [1234] = {.lex_state = 33}, + [1235] = {.lex_state = 23}, + [1236] = {.lex_state = 23}, + [1237] = {.lex_state = 23}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 83}, [1241] = {.lex_state = 83}, - [1242] = {.lex_state = 83}, + [1242] = {.lex_state = 0}, [1243] = {.lex_state = 26}, - [1244] = {.lex_state = 33}, - [1245] = {.lex_state = 28}, + [1244] = {.lex_state = 83}, + [1245] = {.lex_state = 33}, [1246] = {.lex_state = 83}, - [1247] = {.lex_state = 83}, - [1248] = {.lex_state = 83}, + [1247] = {.lex_state = 23}, + [1248] = {.lex_state = 23}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 28}, - [1251] = {.lex_state = 26}, - [1252] = {.lex_state = 33}, - [1253] = {.lex_state = 23}, + [1250] = {.lex_state = 33}, + [1251] = {.lex_state = 33}, + [1252] = {.lex_state = 23}, + [1253] = {.lex_state = 83}, [1254] = {.lex_state = 23}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 83}, + [1255] = {.lex_state = 83}, + [1256] = {.lex_state = 26}, [1257] = {.lex_state = 83}, [1258] = {.lex_state = 23}, - [1259] = {.lex_state = 83}, - [1260] = {.lex_state = 0}, + [1259] = {.lex_state = 23}, + [1260] = {.lex_state = 83}, [1261] = {.lex_state = 23}, [1262] = {.lex_state = 83}, - [1263] = {.lex_state = 23}, - [1264] = {.lex_state = 23}, - [1265] = {.lex_state = 33}, - [1266] = {.lex_state = 23}, - [1267] = {.lex_state = 23}, - [1268] = {.lex_state = 26}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 28}, + [1265] = {.lex_state = 83}, + [1266] = {.lex_state = 33}, + [1267] = {.lex_state = 83}, + [1268] = {.lex_state = 23}, [1269] = {.lex_state = 23}, - [1270] = {.lex_state = 83}, - [1271] = {.lex_state = 83}, - [1272] = {.lex_state = 83}, - [1273] = {.lex_state = 33}, - [1274] = {.lex_state = 83}, - [1275] = {.lex_state = 33}, - [1276] = {.lex_state = 17}, - [1277] = {.lex_state = 0}, + [1270] = {.lex_state = 23}, + [1271] = {.lex_state = 17}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 0}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 33}, [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 27}, + [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, [1281] = {.lex_state = 0}, [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 33}, + [1283] = {.lex_state = 0}, [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 17}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 27}, + [1286] = {.lex_state = 83}, + [1287] = {.lex_state = 27}, + [1288] = {.lex_state = 17}, + [1289] = {.lex_state = 17}, + [1290] = {.lex_state = 0}, [1291] = {.lex_state = 17}, - [1292] = {.lex_state = 17}, - [1293] = {.lex_state = 17}, - [1294] = {.lex_state = 27}, + [1292] = {.lex_state = 27}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 17}, [1295] = {.lex_state = 17}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 27}, + [1296] = {.lex_state = 27}, + [1297] = {.lex_state = 17}, [1298] = {.lex_state = 17}, [1299] = {.lex_state = 17}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 17}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 17}, - [1305] = {.lex_state = 17}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 17}, - [1308] = {.lex_state = 83}, - [1309] = {.lex_state = 33}, - [1310] = {.lex_state = 33}, - [1311] = {.lex_state = 17}, - [1312] = {.lex_state = 27}, - [1313] = {.lex_state = 17}, - [1314] = {.lex_state = 0}, + [1300] = {.lex_state = 17}, + [1301] = {.lex_state = 27}, + [1302] = {.lex_state = 17}, + [1303] = {.lex_state = 17}, + [1304] = {.lex_state = 27}, + [1305] = {.lex_state = 33}, + [1306] = {.lex_state = 33}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 27}, + [1309] = {.lex_state = 17}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 33}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 27}, [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 33}, - [1317] = {.lex_state = 27}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 27}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 17}, + [1318] = {.lex_state = 17}, + [1319] = {.lex_state = 17}, [1320] = {.lex_state = 0}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 27}, - [1325] = {.lex_state = 27}, - [1326] = {.lex_state = 27}, - [1327] = {.lex_state = 27}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 83}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, + [1329] = {.lex_state = 27}, [1330] = {.lex_state = 27}, [1331] = {.lex_state = 0}, [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 27}, + [1333] = {.lex_state = 0}, [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 27}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 27}, - [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 0}, + [1335] = {.lex_state = 0}, + [1336] = {.lex_state = 33}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 27}, + [1339] = {.lex_state = 33}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 33}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 27}, - [1344] = {.lex_state = 33}, + [1341] = {.lex_state = 0}, + [1342] = {.lex_state = 27}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 27}, [1345] = {.lex_state = 27}, [1346] = {.lex_state = 27}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 27}, - [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 27}, + [1347] = {.lex_state = 27}, + [1348] = {.lex_state = 27}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 17}, + [1351] = {.lex_state = 0}, [1352] = {.lex_state = 27}, - [1353] = {.lex_state = 27}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 17}, - [1356] = {.lex_state = 27}, - [1357] = {.lex_state = 17}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 27}, + [1355] = {.lex_state = 33}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 0}, [1358] = {.lex_state = 0}, [1359] = {.lex_state = 27}, - [1360] = {.lex_state = 33}, + [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 33}, - [1369] = {.lex_state = 17}, - [1370] = {.lex_state = 33}, - [1371] = {.lex_state = 33}, - [1372] = {.lex_state = 17}, + [1362] = {.lex_state = 17}, + [1363] = {.lex_state = 33}, + [1364] = {.lex_state = 27}, + [1365] = {.lex_state = 33}, + [1366] = {.lex_state = 33}, + [1367] = {.lex_state = 27}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 33}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 83}, + [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, + [1376] = {.lex_state = 27}, [1377] = {.lex_state = 33}, - [1378] = {.lex_state = 17}, - [1379] = {.lex_state = 17}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 33}, - [1383] = {.lex_state = 0}, + [1381] = {.lex_state = 33}, + [1382] = {.lex_state = 27}, + [1383] = {.lex_state = 27}, [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 33}, - [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 83}, - [1391] = {.lex_state = 17}, - [1392] = {.lex_state = 27}, - [1393] = {.lex_state = 33}, - [1394] = {.lex_state = 17}, - [1395] = {.lex_state = 17}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 27}, + [1388] = {.lex_state = 33}, + [1389] = {.lex_state = 17}, + [1390] = {.lex_state = 17}, + [1391] = {.lex_state = 33}, + [1392] = {.lex_state = 33}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 27}, + [1395] = {.lex_state = 33}, [1396] = {.lex_state = 33}, - [1397] = {.lex_state = 33}, + [1397] = {.lex_state = 27}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 33}, - [1401] = {.lex_state = 33}, - [1402] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 0}, + [1402] = {.lex_state = 17}, [1403] = {.lex_state = 0}, [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 17}, - [1406] = {.lex_state = 0}, + [1405] = {.lex_state = 33}, + [1406] = {.lex_state = 27}, [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 0}, + [1409] = {.lex_state = 33}, [1410] = {.lex_state = 33}, - [1411] = {.lex_state = 27}, - [1412] = {.lex_state = 27}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 33}, - [1415] = {.lex_state = 33}, - [1416] = {.lex_state = 33}, + [1411] = {.lex_state = 33}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 33}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 27}, + [1416] = {.lex_state = 27}, [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 33}, - [1419] = {.lex_state = 0}, + [1418] = {.lex_state = 0}, + [1419] = {.lex_state = 17}, [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 0}, + [1421] = {.lex_state = 17}, + [1422] = {.lex_state = 33}, + [1423] = {.lex_state = 27}, [1424] = {.lex_state = 17}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 27}, - [1427] = {.lex_state = 33}, - [1428] = {.lex_state = 27}, + [1425] = {.lex_state = 17}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 17}, - [1431] = {.lex_state = 0}, + [1431] = {.lex_state = 33}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 17}, - [1435] = {.lex_state = 27}, - [1436] = {.lex_state = 33}, + [1433] = {.lex_state = 33}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 83}, + [1436] = {.lex_state = 83}, [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 33}, - [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 83}, - [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 83}, + [1438] = {.lex_state = 83}, + [1439] = {.lex_state = 17}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 27}, + [1442] = {.lex_state = 33}, + [1443] = {.lex_state = 0}, [1444] = {.lex_state = 0}, [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 33}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, + [1446] = {.lex_state = 83}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 83}, + [1449] = {.lex_state = 83}, [1450] = {.lex_state = 0}, [1451] = {.lex_state = 83}, - [1452] = {.lex_state = 27}, + [1452] = {.lex_state = 33}, [1453] = {.lex_state = 83}, - [1454] = {.lex_state = 83}, - [1455] = {.lex_state = 27}, - [1456] = {.lex_state = 83}, - [1457] = {.lex_state = 33}, - [1458] = {.lex_state = 83}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6983,68 +6971,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1433), - [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_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1015), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(649), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(242), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [sym_translation_unit] = STATE(1428), + [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_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(641), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -7120,32 +7108,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { + [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(1441), + [sym_preproc_elif] = STATE(1441), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(91), + [aux_sym_preproc_include_token1] = ACTIONS(93), + [aux_sym_preproc_def_token1] = ACTIONS(95), + [aux_sym_preproc_if_token1] = ACTIONS(97), + [aux_sym_preproc_if_token2] = ACTIONS(99), + [aux_sym_preproc_ifdef_token1] = ACTIONS(101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(101), + [aux_sym_preproc_else_token1] = ACTIONS(103), + [aux_sym_preproc_elif_token1] = ACTIONS(105), + [sym_preproc_directive] = ACTIONS(107), + [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(109), + [anon_sym_typedef] = ACTIONS(111), + [anon_sym_extern] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [3] = { + [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(1387), + [sym_preproc_elif] = STATE(1387), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(91), + [aux_sym_preproc_include_token1] = ACTIONS(93), + [aux_sym_preproc_def_token1] = ACTIONS(95), + [aux_sym_preproc_if_token1] = ACTIONS(97), + [aux_sym_preproc_if_token2] = ACTIONS(139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(101), + [aux_sym_preproc_else_token1] = ACTIONS(103), + [aux_sym_preproc_elif_token1] = ACTIONS(105), + [sym_preproc_directive] = ACTIONS(107), + [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(109), + [anon_sym_typedef] = ACTIONS(111), + [anon_sym_extern] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [4] = { [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(1333), - [sym_preproc_elif] = STATE(1333), + [sym_preproc_else] = STATE(1383), + [sym_preproc_elif] = STATE(1383), [sym_function_definition] = STATE(7), [sym_declaration] = STATE(7), [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(7), [sym_labeled_statement] = STATE(7), [sym_expression_statement] = STATE(7), @@ -7159,35 +7427,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(7), [sym_continue_statement] = STATE(7), [sym_goto_statement] = STATE(7), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(99), + [aux_sym_preproc_if_token2] = ACTIONS(141), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7259,75 +7527,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [3] = { - [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(1294), - [sym_preproc_elif] = STATE(1294), - [sym_function_definition] = STATE(9), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [5] = { + [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(1382), + [sym_preproc_elif] = STATE(1382), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(139), + [aux_sym_preproc_if_token2] = ACTIONS(143), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7399,75 +7667,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [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(1392), - [sym_preproc_elif] = STATE(1392), - [sym_function_definition] = STATE(8), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), - [sym_compound_statement] = STATE(8), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [6] = { + [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(1329), + [sym_preproc_elif] = STATE(1329), + [sym_function_definition] = STATE(13), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(141), + [aux_sym_preproc_if_token2] = ACTIONS(145), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7539,33 +7807,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [5] = { + [7] = { [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(1297), - [sym_preproc_elif] = STATE(1297), + [sym_preproc_else] = STATE(1367), + [sym_preproc_elif] = STATE(1367), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -7579,35 +7847,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(143), + [aux_sym_preproc_if_token2] = ACTIONS(147), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7679,33 +7947,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [6] = { + [8] = { [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(1317), - [sym_preproc_elif] = STATE(1317), + [sym_preproc_else] = STATE(1397), + [sym_preproc_elif] = STATE(1397), [sym_function_definition] = STATE(5), [sym_declaration] = STATE(5), [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(5), [sym_labeled_statement] = STATE(5), [sym_expression_statement] = STATE(5), @@ -7719,35 +7987,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(5), [sym_continue_statement] = STATE(5), [sym_goto_statement] = STATE(5), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(145), + [aux_sym_preproc_if_token2] = ACTIONS(149), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7819,33 +8087,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [7] = { + [9] = { [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(1343), - [sym_preproc_elif] = STATE(1343), + [sym_preproc_else] = STATE(1314), + [sym_preproc_elif] = STATE(1314), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -7859,35 +8127,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(147), + [aux_sym_preproc_if_token2] = ACTIONS(151), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -7959,33 +8227,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [8] = { + [10] = { + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_call] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(1354), + [sym_preproc_elif] = STATE(1354), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_case_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_goto_statement] = STATE(12), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(91), + [aux_sym_preproc_include_token1] = ACTIONS(93), + [aux_sym_preproc_def_token1] = ACTIONS(95), + [aux_sym_preproc_if_token1] = ACTIONS(97), + [aux_sym_preproc_if_token2] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(101), + [aux_sym_preproc_else_token1] = ACTIONS(103), + [aux_sym_preproc_elif_token1] = ACTIONS(105), + [sym_preproc_directive] = ACTIONS(107), + [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(109), + [anon_sym_typedef] = ACTIONS(111), + [anon_sym_extern] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [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(1359), + [sym_preproc_elif] = STATE(1359), + [sym_function_definition] = STATE(2), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(91), + [aux_sym_preproc_include_token1] = ACTIONS(93), + [aux_sym_preproc_def_token1] = ACTIONS(95), + [aux_sym_preproc_if_token1] = ACTIONS(97), + [aux_sym_preproc_if_token2] = ACTIONS(155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(101), + [aux_sym_preproc_else_token1] = ACTIONS(103), + [aux_sym_preproc_elif_token1] = ACTIONS(105), + [sym_preproc_directive] = ACTIONS(107), + [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(109), + [anon_sym_typedef] = ACTIONS(111), + [anon_sym_extern] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [12] = { [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(1352), - [sym_preproc_elif] = STATE(1352), + [sym_preproc_else] = STATE(1376), + [sym_preproc_elif] = STATE(1376), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -7999,35 +8547,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(149), + [aux_sym_preproc_if_token2] = ACTIONS(157), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -8099,33 +8647,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [9] = { + [13] = { [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(1312), - [sym_preproc_elif] = STATE(1312), + [sym_preproc_else] = STATE(1423), + [sym_preproc_elif] = STATE(1423), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8139,35 +8687,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(151), + [aux_sym_preproc_if_token2] = ACTIONS(159), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -8239,33 +8787,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [10] = { + [14] = { [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(1330), - [sym_preproc_elif] = STATE(1330), + [sym_preproc_else] = STATE(1287), + [sym_preproc_elif] = STATE(1287), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8279,35 +8827,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(153), + [aux_sym_preproc_if_token2] = ACTIONS(161), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -8379,75 +8927,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [11] = { - [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(1346), - [sym_preproc_elif] = STATE(1346), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [15] = { + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_call] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_else] = STATE(1308), + [sym_preproc_elif] = STATE(1308), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_case_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(155), + [aux_sym_preproc_if_token2] = ACTIONS(163), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -8519,33 +9067,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [12] = { + [16] = { [sym_preproc_include] = STATE(14), [sym_preproc_def] = STATE(14), [sym_preproc_function_def] = STATE(14), [sym_preproc_call] = STATE(14), [sym_preproc_if] = STATE(14), [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1351), - [sym_preproc_elif] = STATE(1351), + [sym_preproc_else] = STATE(1296), + [sym_preproc_elif] = STATE(1296), [sym_function_definition] = STATE(14), [sym_declaration] = STATE(14), [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(14), [sym_labeled_statement] = STATE(14), [sym_expression_statement] = STATE(14), @@ -8559,35 +9107,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(14), [sym_continue_statement] = STATE(14), [sym_goto_statement] = STATE(14), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(157), + [aux_sym_preproc_if_token2] = ACTIONS(165), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -8659,33 +9207,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [13] = { + [17] = { [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(1337), - [sym_preproc_elif] = STATE(1337), + [sym_preproc_else] = STATE(1292), + [sym_preproc_elif] = STATE(1292), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8699,35 +9247,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(159), + [aux_sym_preproc_if_token2] = ACTIONS(167), [aux_sym_preproc_ifdef_token1] = ACTIONS(101), [aux_sym_preproc_ifdef_token2] = ACTIONS(101), [aux_sym_preproc_else_token1] = ACTIONS(103), @@ -8799,173 +9347,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [14] = { - [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(1345), - [sym_preproc_elif] = STATE(1345), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(91), - [aux_sym_preproc_include_token1] = ACTIONS(93), - [aux_sym_preproc_def_token1] = ACTIONS(95), - [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(101), - [aux_sym_preproc_else_token1] = ACTIONS(103), - [aux_sym_preproc_elif_token1] = ACTIONS(105), - [sym_preproc_directive] = ACTIONS(107), - [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(109), - [anon_sym_typedef] = ACTIONS(111), - [anon_sym_extern] = ACTIONS(113), - [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(115), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [15] = { + [18] = { [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(1455), - [sym_preproc_elif] = STATE(1455), + [sym_preproc_else] = STATE(1347), + [sym_preproc_elif] = STATE(1347), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8979,450 +9387,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(91), - [aux_sym_preproc_include_token1] = ACTIONS(93), - [aux_sym_preproc_def_token1] = ACTIONS(95), - [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(101), - [aux_sym_preproc_else_token1] = ACTIONS(103), - [aux_sym_preproc_elif_token1] = ACTIONS(105), - [sym_preproc_directive] = ACTIONS(107), - [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(109), - [anon_sym_typedef] = ACTIONS(111), - [anon_sym_extern] = ACTIONS(113), - [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(115), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [16] = { - [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(1353), - [sym_preproc_elif] = STATE(1353), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(91), - [aux_sym_preproc_include_token1] = ACTIONS(93), - [aux_sym_preproc_def_token1] = ACTIONS(95), - [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(101), - [aux_sym_preproc_else_token1] = ACTIONS(103), - [aux_sym_preproc_elif_token1] = ACTIONS(105), - [sym_preproc_directive] = ACTIONS(107), - [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(109), - [anon_sym_typedef] = ACTIONS(111), - [anon_sym_extern] = ACTIONS(113), - [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(115), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [17] = { - [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(1435), - [sym_preproc_elif] = STATE(1435), - [sym_function_definition] = STATE(10), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), - [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(91), - [aux_sym_preproc_include_token1] = ACTIONS(93), - [aux_sym_preproc_def_token1] = ACTIONS(95), - [aux_sym_preproc_if_token1] = ACTIONS(97), - [aux_sym_preproc_if_token2] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(101), - [aux_sym_preproc_else_token1] = ACTIONS(103), - [aux_sym_preproc_elif_token1] = ACTIONS(105), - [sym_preproc_directive] = ACTIONS(107), - [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(109), - [anon_sym_typedef] = ACTIONS(111), - [anon_sym_extern] = ACTIONS(113), - [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(115), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [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(1412), - [sym_preproc_elif] = STATE(1412), - [sym_function_definition] = STATE(15), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9500,69 +9488,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [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(1319), - [sym_preproc_elif] = STATE(1319), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [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(1348), + [sym_preproc_elif] = STATE(1348), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9649,21 +9637,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1013), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(647), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(644), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(851), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -9677,30 +9665,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(252), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(176), [aux_sym_preproc_def_token1] = ACTIONS(179), @@ -9778,74 +9766,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [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_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [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_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(844), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [aux_sym_preproc_if_token2] = ACTIONS(309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(311), + [sym_preproc_directive] = ACTIONS(313), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -9853,9 +9842,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_typedef] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(319), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -9865,8 +9854,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(319), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(321), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -9914,74 +9902,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { - [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -9989,9 +9977,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10001,8 +9989,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(319), - [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(365), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10019,17 +10007,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10050,74 +10038,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10125,9 +10113,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10137,8 +10125,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(319), - [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10155,17 +10143,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10186,74 +10174,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [24] = { - [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_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10261,9 +10249,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10273,8 +10261,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(319), - [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(391), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10291,17 +10279,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10322,74 +10310,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [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_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), + [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(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), + [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(363), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [26] = { + [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_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(844), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [aux_sym_preproc_if_token2] = ACTIONS(395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(311), + [sym_preproc_directive] = ACTIONS(313), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10397,9 +10522,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_typedef] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(319), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10409,8 +10534,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(319), - [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(321), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10457,76 +10581,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [26] = { - [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_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(645), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(850), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(246), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(353), - [aux_sym_preproc_include_token1] = ACTIONS(355), - [aux_sym_preproc_def_token1] = ACTIONS(357), - [aux_sym_preproc_if_token1] = ACTIONS(359), - [aux_sym_preproc_if_token2] = ACTIONS(361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(363), - [aux_sym_preproc_ifdef_token2] = ACTIONS(363), - [sym_preproc_directive] = ACTIONS(365), + [27] = { + [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_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10534,9 +10657,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_SEMI] = ACTIONS(367), - [anon_sym_typedef] = ACTIONS(369), - [anon_sym_extern] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10546,7 +10669,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(373), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10563,17 +10687,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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10593,75 +10717,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [27] = { - [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_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [28] = { + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10669,9 +10793,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10681,8 +10805,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(319), - [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10699,17 +10823,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10729,75 +10853,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [29] = { + [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_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10805,9 +10929,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10817,8 +10941,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(319), - [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10835,17 +10959,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10865,75 +10989,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [29] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [30] = { + [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_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(641), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [ts_builtin_sym_end] = ACTIONS(403), + [sym_identifier] = ACTIONS(405), + [aux_sym_preproc_include_token1] = ACTIONS(408), + [aux_sym_preproc_def_token1] = ACTIONS(411), + [aux_sym_preproc_if_token1] = ACTIONS(414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(417), + [aux_sym_preproc_ifdef_token2] = ACTIONS(417), + [sym_preproc_directive] = ACTIONS(420), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_typedef] = ACTIONS(426), + [anon_sym_extern] = ACTIONS(429), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(217), + [anon_sym___declspec] = ACTIONS(220), + [anon_sym___cdecl] = ACTIONS(223), + [anon_sym___clrcall] = ACTIONS(223), + [anon_sym___stdcall] = ACTIONS(223), + [anon_sym___fastcall] = ACTIONS(223), + [anon_sym___thiscall] = ACTIONS(223), + [anon_sym___vectorcall] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(232), + [anon_sym_volatile] = ACTIONS(232), + [anon_sym_restrict] = ACTIONS(232), + [anon_sym__Atomic] = ACTIONS(232), + [anon_sym_signed] = ACTIONS(235), + [anon_sym_unsigned] = ACTIONS(235), + [anon_sym_long] = ACTIONS(235), + [anon_sym_short] = ACTIONS(235), + [sym_primitive_type] = ACTIONS(238), + [anon_sym_enum] = ACTIONS(241), + [anon_sym_struct] = ACTIONS(244), + [anon_sym_union] = ACTIONS(247), + [anon_sym_if] = ACTIONS(435), + [anon_sym_switch] = ACTIONS(438), + [anon_sym_case] = ACTIONS(441), + [anon_sym_default] = ACTIONS(444), + [anon_sym_while] = ACTIONS(447), + [anon_sym_do] = ACTIONS(450), + [anon_sym_for] = ACTIONS(453), + [anon_sym_return] = ACTIONS(456), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(462), + [anon_sym_goto] = ACTIONS(465), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_sizeof] = ACTIONS(286), + [sym_number_literal] = ACTIONS(289), + [anon_sym_L_SQUOTE] = ACTIONS(292), + [anon_sym_u_SQUOTE] = ACTIONS(292), + [anon_sym_U_SQUOTE] = ACTIONS(292), + [anon_sym_u8_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_L_DQUOTE] = ACTIONS(295), + [anon_sym_u_DQUOTE] = ACTIONS(295), + [anon_sym_U_DQUOTE] = ACTIONS(295), + [anon_sym_u8_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_true] = ACTIONS(298), + [sym_false] = ACTIONS(298), + [sym_null] = ACTIONS(298), + [sym_comment] = ACTIONS(3), + }, + [31] = { + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(468), + [aux_sym_preproc_include_token1] = ACTIONS(471), + [aux_sym_preproc_def_token1] = ACTIONS(474), + [aux_sym_preproc_if_token1] = ACTIONS(477), + [aux_sym_preproc_ifdef_token1] = ACTIONS(480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(480), + [sym_preproc_directive] = ACTIONS(483), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_typedef] = ACTIONS(489), + [anon_sym_extern] = ACTIONS(492), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(217), + [anon_sym___declspec] = ACTIONS(220), + [anon_sym___cdecl] = ACTIONS(223), + [anon_sym___clrcall] = ACTIONS(223), + [anon_sym___stdcall] = ACTIONS(223), + [anon_sym___fastcall] = ACTIONS(223), + [anon_sym___thiscall] = ACTIONS(223), + [anon_sym___vectorcall] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(495), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(232), + [anon_sym_volatile] = ACTIONS(232), + [anon_sym_restrict] = ACTIONS(232), + [anon_sym__Atomic] = ACTIONS(232), + [anon_sym_signed] = ACTIONS(235), + [anon_sym_unsigned] = ACTIONS(235), + [anon_sym_long] = ACTIONS(235), + [anon_sym_short] = ACTIONS(235), + [sym_primitive_type] = ACTIONS(238), + [anon_sym_enum] = ACTIONS(241), + [anon_sym_struct] = ACTIONS(244), + [anon_sym_union] = ACTIONS(247), + [anon_sym_if] = ACTIONS(498), + [anon_sym_switch] = ACTIONS(501), + [anon_sym_case] = ACTIONS(504), + [anon_sym_default] = ACTIONS(507), + [anon_sym_while] = ACTIONS(510), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(516), + [anon_sym_return] = ACTIONS(519), + [anon_sym_break] = ACTIONS(522), + [anon_sym_continue] = ACTIONS(525), + [anon_sym_goto] = ACTIONS(528), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_sizeof] = ACTIONS(286), + [sym_number_literal] = ACTIONS(289), + [anon_sym_L_SQUOTE] = ACTIONS(292), + [anon_sym_u_SQUOTE] = ACTIONS(292), + [anon_sym_U_SQUOTE] = ACTIONS(292), + [anon_sym_u8_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_L_DQUOTE] = ACTIONS(295), + [anon_sym_u_DQUOTE] = ACTIONS(295), + [anon_sym_U_DQUOTE] = ACTIONS(295), + [anon_sym_u8_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_true] = ACTIONS(298), + [sym_false] = ACTIONS(298), + [sym_null] = ACTIONS(298), + [sym_comment] = ACTIONS(3), + }, + [32] = { + [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_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10941,9 +11337,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10953,8 +11349,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(319), - [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10971,17 +11367,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11001,75 +11397,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [30] = { - [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [33] = { + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11077,9 +11473,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11089,8 +11485,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(319), - [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11107,17 +11503,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11137,75 +11533,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [31] = { - [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_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11213,9 +11609,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11225,8 +11621,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(319), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11243,17 +11639,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11273,75 +11669,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [32] = { - [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [35] = { + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11349,9 +11745,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11361,8 +11757,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(319), - [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11379,17 +11775,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11409,75 +11805,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [33] = { - [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [36] = { + [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_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11485,9 +11881,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11497,8 +11893,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(319), - [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(539), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11515,17 +11911,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11545,7 +11941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [34] = { + [37] = { [sym_preproc_include] = STATE(35), [sym_preproc_def] = STATE(35), [sym_preproc_function_def] = STATE(35), @@ -11555,21 +11951,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(35), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym_expression_statement] = STATE(35), @@ -11583,37 +11979,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(35), [sym_continue_statement] = STATE(35), [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11621,9 +12017,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11633,8 +12029,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(319), - [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(541), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11651,17 +12047,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11681,279 +12077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [35] = { - [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), - [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(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), - [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(319), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [36] = { - [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(415), - [aux_sym_preproc_include_token1] = ACTIONS(418), - [aux_sym_preproc_def_token1] = ACTIONS(421), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(427), - [sym_preproc_directive] = ACTIONS(430), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(433), - [anon_sym_typedef] = ACTIONS(436), - [anon_sym_extern] = ACTIONS(439), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(217), - [anon_sym___declspec] = ACTIONS(220), - [anon_sym___cdecl] = ACTIONS(223), - [anon_sym___clrcall] = ACTIONS(223), - [anon_sym___stdcall] = ACTIONS(223), - [anon_sym___fastcall] = ACTIONS(223), - [anon_sym___thiscall] = ACTIONS(223), - [anon_sym___vectorcall] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(442), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(232), - [anon_sym_volatile] = ACTIONS(232), - [anon_sym_restrict] = ACTIONS(232), - [anon_sym__Atomic] = ACTIONS(232), - [anon_sym_signed] = ACTIONS(235), - [anon_sym_unsigned] = ACTIONS(235), - [anon_sym_long] = ACTIONS(235), - [anon_sym_short] = ACTIONS(235), - [sym_primitive_type] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(241), - [anon_sym_struct] = ACTIONS(244), - [anon_sym_union] = ACTIONS(247), - [anon_sym_if] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(450), - [anon_sym_case] = ACTIONS(453), - [anon_sym_default] = ACTIONS(456), - [anon_sym_while] = ACTIONS(459), - [anon_sym_do] = ACTIONS(462), - [anon_sym_for] = ACTIONS(465), - [anon_sym_return] = ACTIONS(468), - [anon_sym_break] = ACTIONS(471), - [anon_sym_continue] = ACTIONS(474), - [anon_sym_goto] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_sizeof] = ACTIONS(286), - [sym_number_literal] = ACTIONS(289), - [anon_sym_L_SQUOTE] = ACTIONS(292), - [anon_sym_u_SQUOTE] = ACTIONS(292), - [anon_sym_U_SQUOTE] = ACTIONS(292), - [anon_sym_u8_SQUOTE] = ACTIONS(292), - [anon_sym_SQUOTE] = ACTIONS(292), - [anon_sym_L_DQUOTE] = ACTIONS(295), - [anon_sym_u_DQUOTE] = ACTIONS(295), - [anon_sym_U_DQUOTE] = ACTIONS(295), - [anon_sym_u8_DQUOTE] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_true] = ACTIONS(298), - [sym_false] = ACTIONS(298), - [sym_null] = ACTIONS(298), - [sym_comment] = ACTIONS(3), - }, - [37] = { + [38] = { [sym_preproc_include] = STATE(42), [sym_preproc_def] = STATE(42), [sym_preproc_function_def] = STATE(42), @@ -11963,21 +12087,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(42), [sym_declaration] = STATE(42), [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(42), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), @@ -11991,37 +12115,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(42), [sym_continue_statement] = STATE(42), [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12029,9 +12153,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12041,8 +12165,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(319), - [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(543), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12059,17 +12183,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12089,212 +12213,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(645), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(850), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(246), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(482), - [aux_sym_preproc_include_token1] = ACTIONS(485), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(491), - [aux_sym_preproc_if_token2] = ACTIONS(185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(497), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_typedef] = ACTIONS(503), - [anon_sym_extern] = ACTIONS(506), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(217), - [anon_sym___declspec] = ACTIONS(220), - [anon_sym___cdecl] = ACTIONS(223), - [anon_sym___clrcall] = ACTIONS(223), - [anon_sym___stdcall] = ACTIONS(223), - [anon_sym___fastcall] = ACTIONS(223), - [anon_sym___thiscall] = ACTIONS(223), - [anon_sym___vectorcall] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(232), - [anon_sym_volatile] = ACTIONS(232), - [anon_sym_restrict] = ACTIONS(232), - [anon_sym__Atomic] = ACTIONS(232), - [anon_sym_signed] = ACTIONS(235), - [anon_sym_unsigned] = ACTIONS(235), - [anon_sym_long] = ACTIONS(235), - [anon_sym_short] = ACTIONS(235), - [sym_primitive_type] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(241), - [anon_sym_struct] = ACTIONS(244), - [anon_sym_union] = ACTIONS(247), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(515), - [anon_sym_case] = ACTIONS(518), - [anon_sym_default] = ACTIONS(521), - [anon_sym_while] = ACTIONS(524), - [anon_sym_do] = ACTIONS(527), - [anon_sym_for] = ACTIONS(530), - [anon_sym_return] = ACTIONS(533), - [anon_sym_break] = ACTIONS(536), - [anon_sym_continue] = ACTIONS(539), - [anon_sym_goto] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_sizeof] = ACTIONS(286), - [sym_number_literal] = ACTIONS(289), - [anon_sym_L_SQUOTE] = ACTIONS(292), - [anon_sym_u_SQUOTE] = ACTIONS(292), - [anon_sym_U_SQUOTE] = ACTIONS(292), - [anon_sym_u8_SQUOTE] = ACTIONS(292), - [anon_sym_SQUOTE] = ACTIONS(292), - [anon_sym_L_DQUOTE] = ACTIONS(295), - [anon_sym_u_DQUOTE] = ACTIONS(295), - [anon_sym_U_DQUOTE] = ACTIONS(295), - [anon_sym_u8_DQUOTE] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_true] = ACTIONS(298), - [sym_false] = ACTIONS(298), - [sym_null] = ACTIONS(298), - [sym_comment] = ACTIONS(3), - }, [39] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(650), + [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_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(645), [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(645), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(850), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(246), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(353), - [aux_sym_preproc_include_token1] = ACTIONS(355), - [aux_sym_preproc_def_token1] = ACTIONS(357), - [aux_sym_preproc_if_token1] = ACTIONS(359), - [aux_sym_preproc_if_token2] = ACTIONS(545), - [aux_sym_preproc_ifdef_token1] = ACTIONS(363), - [aux_sym_preproc_ifdef_token2] = ACTIONS(363), - [sym_preproc_directive] = ACTIONS(365), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(641), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [ts_builtin_sym_end] = ACTIONS(545), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12302,9 +12290,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_SEMI] = ACTIONS(367), - [anon_sym_typedef] = ACTIONS(369), - [anon_sym_extern] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12314,7 +12302,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(373), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12331,17 +12319,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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12362,75 +12350,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [40] = { - [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_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1015), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(649), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(242), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [ts_builtin_sym_end] = ACTIONS(547), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [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_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12438,9 +12425,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_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12450,7 +12437,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(41), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(547), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12467,17 +12455,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(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_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12507,21 +12495,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1015), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1004), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(649), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(642), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(844), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -12535,35 +12523,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(41), [sym_continue_statement] = STATE(41), [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(881), + [sym_macro_type_specifier] = STATE(882), [aux_sym_translation_unit_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(242), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [ts_builtin_sym_end] = ACTIONS(445), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(549), [aux_sym_preproc_include_token1] = ACTIONS(552), [aux_sym_preproc_def_token1] = ACTIONS(555), [aux_sym_preproc_if_token1] = ACTIONS(558), + [aux_sym_preproc_if_token2] = ACTIONS(185), [aux_sym_preproc_ifdef_token1] = ACTIONS(561), [aux_sym_preproc_ifdef_token2] = ACTIONS(561), [sym_preproc_directive] = ACTIONS(564), @@ -12634,74 +12622,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [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_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(849), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(260), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(301), - [aux_sym_preproc_include_token1] = ACTIONS(303), - [aux_sym_preproc_def_token1] = ACTIONS(305), - [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(309), - [sym_preproc_directive] = ACTIONS(311), + [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_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1001), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(345), + [aux_sym_preproc_include_token1] = ACTIONS(347), + [aux_sym_preproc_def_token1] = ACTIONS(349), + [aux_sym_preproc_if_token1] = ACTIONS(351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(353), + [sym_preproc_directive] = ACTIONS(355), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12709,9 +12697,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), + [anon_sym_extern] = ACTIONS(361), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12721,7 +12709,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(319), + [anon_sym_LBRACE] = ACTIONS(363), [anon_sym_RBRACE] = ACTIONS(612), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -12739,17 +12727,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(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12770,56 +12758,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(47), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1007), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(46), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(616), [aux_sym_preproc_def_token1] = ACTIONS(616), @@ -12900,20 +12888,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [44] = { [sym_declaration] = STATE(45), [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1007), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(45), [sym_labeled_statement] = STATE(45), [sym_expression_statement] = STATE(45), [sym_if_statement] = STATE(45), @@ -12925,28 +12913,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(45), [sym_continue_statement] = STATE(45), [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(618), @@ -13026,66 +13014,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(47), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1007), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(620), + [aux_sym_preproc_include_token1] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(623), + [aux_sym_preproc_if_token1] = ACTIONS(623), + [aux_sym_preproc_if_token2] = ACTIONS(623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(623), + [aux_sym_preproc_else_token1] = ACTIONS(623), + [aux_sym_preproc_elif_token1] = ACTIONS(623), + [sym_preproc_directive] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(640), + [anon_sym_extern] = ACTIONS(643), + [anon_sym___attribute__] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(649), + [anon_sym___declspec] = ACTIONS(652), + [anon_sym___cdecl] = ACTIONS(623), + [anon_sym___clrcall] = ACTIONS(623), + [anon_sym___stdcall] = ACTIONS(623), + [anon_sym___fastcall] = ACTIONS(623), + [anon_sym___thiscall] = ACTIONS(623), + [anon_sym___vectorcall] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(655), + [anon_sym_static] = ACTIONS(643), + [anon_sym_auto] = ACTIONS(643), + [anon_sym_register] = ACTIONS(643), + [anon_sym_inline] = ACTIONS(643), + [anon_sym_const] = ACTIONS(658), + [anon_sym_volatile] = ACTIONS(658), + [anon_sym_restrict] = ACTIONS(658), + [anon_sym__Atomic] = ACTIONS(658), + [anon_sym_signed] = ACTIONS(661), + [anon_sym_unsigned] = ACTIONS(661), + [anon_sym_long] = ACTIONS(661), + [anon_sym_short] = ACTIONS(661), + [sym_primitive_type] = ACTIONS(664), + [anon_sym_enum] = ACTIONS(667), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_union] = ACTIONS(673), + [anon_sym_if] = ACTIONS(676), + [anon_sym_else] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_case] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_while] = ACTIONS(682), + [anon_sym_do] = ACTIONS(685), + [anon_sym_for] = ACTIONS(688), + [anon_sym_return] = ACTIONS(691), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_goto] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_sizeof] = ACTIONS(706), + [sym_number_literal] = ACTIONS(709), + [anon_sym_L_SQUOTE] = ACTIONS(712), + [anon_sym_u_SQUOTE] = ACTIONS(712), + [anon_sym_U_SQUOTE] = ACTIONS(712), + [anon_sym_u8_SQUOTE] = ACTIONS(712), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_L_DQUOTE] = ACTIONS(715), + [anon_sym_u_DQUOTE] = ACTIONS(715), + [anon_sym_U_DQUOTE] = ACTIONS(715), + [anon_sym_u8_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_comment] = ACTIONS(3), + }, + [46] = { + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1007), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(614), - [aux_sym_preproc_include_token1] = ACTIONS(620), - [aux_sym_preproc_def_token1] = ACTIONS(620), - [aux_sym_preproc_if_token1] = ACTIONS(620), - [aux_sym_preproc_if_token2] = ACTIONS(620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(620), - [aux_sym_preproc_else_token1] = ACTIONS(620), - [aux_sym_preproc_elif_token1] = ACTIONS(620), - [sym_preproc_directive] = ACTIONS(620), + [aux_sym_preproc_include_token1] = ACTIONS(721), + [aux_sym_preproc_def_token1] = ACTIONS(721), + [aux_sym_preproc_if_token1] = ACTIONS(721), + [aux_sym_preproc_if_token2] = ACTIONS(721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(721), + [aux_sym_preproc_else_token1] = ACTIONS(721), + [aux_sym_preproc_elif_token1] = ACTIONS(721), + [sym_preproc_directive] = ACTIONS(721), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13099,12 +13215,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(620), - [anon_sym___clrcall] = ACTIONS(620), - [anon_sym___stdcall] = ACTIONS(620), - [anon_sym___fastcall] = ACTIONS(620), - [anon_sym___thiscall] = ACTIONS(620), - [anon_sym___vectorcall] = ACTIONS(620), + [anon_sym___cdecl] = ACTIONS(721), + [anon_sym___clrcall] = ACTIONS(721), + [anon_sym___stdcall] = ACTIONS(721), + [anon_sym___fastcall] = ACTIONS(721), + [anon_sym___thiscall] = ACTIONS(721), + [anon_sym___vectorcall] = ACTIONS(721), [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -13123,10 +13239,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(117), - [anon_sym_else] = ACTIONS(620), + [anon_sym_else] = ACTIONS(721), [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), + [anon_sym_case] = ACTIONS(721), + [anon_sym_default] = ACTIONS(721), [anon_sym_while] = ACTIONS(125), [anon_sym_do] = ACTIONS(127), [anon_sym_for] = ACTIONS(129), @@ -13153,67 +13269,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [46] = { - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(43), + [47] = { + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1007), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(44), [sym_identifier] = ACTIONS(614), - [aux_sym_preproc_include_token1] = ACTIONS(622), - [aux_sym_preproc_def_token1] = ACTIONS(622), - [aux_sym_preproc_if_token1] = ACTIONS(622), - [aux_sym_preproc_if_token2] = ACTIONS(622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(622), - [aux_sym_preproc_else_token1] = ACTIONS(622), - [aux_sym_preproc_elif_token1] = ACTIONS(622), - [sym_preproc_directive] = ACTIONS(622), + [aux_sym_preproc_include_token1] = ACTIONS(723), + [aux_sym_preproc_def_token1] = ACTIONS(723), + [aux_sym_preproc_if_token1] = ACTIONS(723), + [aux_sym_preproc_if_token2] = ACTIONS(723), + [aux_sym_preproc_ifdef_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token2] = ACTIONS(723), + [aux_sym_preproc_else_token1] = ACTIONS(723), + [aux_sym_preproc_elif_token1] = ACTIONS(723), + [sym_preproc_directive] = ACTIONS(723), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13227,12 +13343,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(622), - [anon_sym___clrcall] = ACTIONS(622), - [anon_sym___stdcall] = ACTIONS(622), - [anon_sym___fastcall] = ACTIONS(622), - [anon_sym___thiscall] = ACTIONS(622), - [anon_sym___vectorcall] = ACTIONS(622), + [anon_sym___cdecl] = ACTIONS(723), + [anon_sym___clrcall] = ACTIONS(723), + [anon_sym___stdcall] = ACTIONS(723), + [anon_sym___fastcall] = ACTIONS(723), + [anon_sym___thiscall] = ACTIONS(723), + [anon_sym___vectorcall] = ACTIONS(723), [anon_sym_LBRACE] = ACTIONS(115), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -13251,10 +13367,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(117), - [anon_sym_else] = ACTIONS(622), + [anon_sym_else] = ACTIONS(723), [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), [anon_sym_while] = ACTIONS(125), [anon_sym_do] = ACTIONS(127), [anon_sym_for] = ACTIONS(129), @@ -13281,316 +13397,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1012), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(366), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(624), - [aux_sym_preproc_include_token1] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(627), - [aux_sym_preproc_if_token2] = ACTIONS(627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(627), - [aux_sym_preproc_else_token1] = ACTIONS(627), - [aux_sym_preproc_elif_token1] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(629), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_typedef] = ACTIONS(644), - [anon_sym_extern] = ACTIONS(647), - [anon_sym___attribute__] = ACTIONS(650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(653), - [anon_sym___declspec] = ACTIONS(656), - [anon_sym___cdecl] = ACTIONS(627), - [anon_sym___clrcall] = ACTIONS(627), - [anon_sym___stdcall] = ACTIONS(627), - [anon_sym___fastcall] = ACTIONS(627), - [anon_sym___thiscall] = ACTIONS(627), - [anon_sym___vectorcall] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_static] = ACTIONS(647), - [anon_sym_auto] = ACTIONS(647), - [anon_sym_register] = ACTIONS(647), - [anon_sym_inline] = ACTIONS(647), - [anon_sym_const] = ACTIONS(662), - [anon_sym_volatile] = ACTIONS(662), - [anon_sym_restrict] = ACTIONS(662), - [anon_sym__Atomic] = ACTIONS(662), - [anon_sym_signed] = ACTIONS(665), - [anon_sym_unsigned] = ACTIONS(665), - [anon_sym_long] = ACTIONS(665), - [anon_sym_short] = ACTIONS(665), - [sym_primitive_type] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_union] = ACTIONS(677), - [anon_sym_if] = ACTIONS(680), - [anon_sym_else] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(683), - [anon_sym_case] = ACTIONS(627), - [anon_sym_default] = ACTIONS(627), - [anon_sym_while] = ACTIONS(686), - [anon_sym_do] = ACTIONS(689), - [anon_sym_for] = ACTIONS(692), - [anon_sym_return] = ACTIONS(695), - [anon_sym_break] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(701), - [anon_sym_goto] = ACTIONS(704), - [anon_sym_DASH_DASH] = ACTIONS(707), - [anon_sym_PLUS_PLUS] = ACTIONS(707), - [anon_sym_sizeof] = ACTIONS(710), - [sym_number_literal] = ACTIONS(713), - [anon_sym_L_SQUOTE] = ACTIONS(716), - [anon_sym_u_SQUOTE] = ACTIONS(716), - [anon_sym_U_SQUOTE] = ACTIONS(716), - [anon_sym_u8_SQUOTE] = ACTIONS(716), - [anon_sym_SQUOTE] = ACTIONS(716), - [anon_sym_L_DQUOTE] = ACTIONS(719), - [anon_sym_u_DQUOTE] = ACTIONS(719), - [anon_sym_U_DQUOTE] = ACTIONS(719), - [anon_sym_u8_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(719), - [sym_true] = ACTIONS(722), - [sym_false] = ACTIONS(722), - [sym_null] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - }, [48] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(725), - [aux_sym_preproc_include_token1] = ACTIONS(620), - [aux_sym_preproc_def_token1] = ACTIONS(620), - [aux_sym_preproc_if_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(620), - [sym_preproc_directive] = ACTIONS(620), - [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(313), - [anon_sym_typedef] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(620), - [anon_sym___clrcall] = ACTIONS(620), - [anon_sym___stdcall] = ACTIONS(620), - [anon_sym___fastcall] = ACTIONS(620), - [anon_sym___thiscall] = ACTIONS(620), - [anon_sym___vectorcall] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(323), - [anon_sym_else] = ACTIONS(620), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [49] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1017), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_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__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(729), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1002), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(60), + [ts_builtin_sym_end] = ACTIONS(725), + [sym_identifier] = ACTIONS(727), [aux_sym_preproc_include_token1] = ACTIONS(618), [aux_sym_preproc_def_token1] = ACTIONS(618), [aux_sym_preproc_if_token1] = ACTIONS(618), - [aux_sym_preproc_if_token2] = ACTIONS(618), [aux_sym_preproc_ifdef_token1] = ACTIONS(618), [aux_sym_preproc_ifdef_token2] = ACTIONS(618), [sym_preproc_directive] = ACTIONS(618), @@ -13601,8 +13463,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_SEMI] = ACTIONS(367), - [anon_sym_typedef] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -13613,7 +13475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(618), [anon_sym___thiscall] = ACTIONS(618), [anon_sym___vectorcall] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13630,18 +13492,18 @@ 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(375), + [anon_sym_if] = ACTIONS(57), [anon_sym_else] = ACTIONS(618), - [anon_sym_switch] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(618), [anon_sym_default] = ACTIONS(618), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13661,191 +13523,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_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__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(317), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(731), - [sym_identifier] = ACTIONS(733), - [aux_sym_preproc_include_token1] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(629), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(736), - [anon_sym_typedef] = ACTIONS(739), - [anon_sym_extern] = ACTIONS(647), - [anon_sym___attribute__] = ACTIONS(650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(653), - [anon_sym___declspec] = ACTIONS(656), - [anon_sym___cdecl] = ACTIONS(627), - [anon_sym___clrcall] = ACTIONS(627), - [anon_sym___stdcall] = ACTIONS(627), - [anon_sym___fastcall] = ACTIONS(627), - [anon_sym___thiscall] = ACTIONS(627), - [anon_sym___vectorcall] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_static] = ACTIONS(647), - [anon_sym_auto] = ACTIONS(647), - [anon_sym_register] = ACTIONS(647), - [anon_sym_inline] = ACTIONS(647), - [anon_sym_const] = ACTIONS(662), - [anon_sym_volatile] = ACTIONS(662), - [anon_sym_restrict] = ACTIONS(662), - [anon_sym__Atomic] = ACTIONS(662), - [anon_sym_signed] = ACTIONS(665), - [anon_sym_unsigned] = ACTIONS(665), - [anon_sym_long] = ACTIONS(665), - [anon_sym_short] = ACTIONS(665), - [sym_primitive_type] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_union] = ACTIONS(677), - [anon_sym_if] = ACTIONS(745), - [anon_sym_else] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(748), - [anon_sym_case] = ACTIONS(627), - [anon_sym_default] = ACTIONS(627), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(754), - [anon_sym_for] = ACTIONS(757), - [anon_sym_return] = ACTIONS(760), - [anon_sym_break] = ACTIONS(763), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_goto] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(707), - [anon_sym_PLUS_PLUS] = ACTIONS(707), - [anon_sym_sizeof] = ACTIONS(710), - [sym_number_literal] = ACTIONS(713), - [anon_sym_L_SQUOTE] = ACTIONS(716), - [anon_sym_u_SQUOTE] = ACTIONS(716), - [anon_sym_U_SQUOTE] = ACTIONS(716), - [anon_sym_u8_SQUOTE] = ACTIONS(716), - [anon_sym_SQUOTE] = ACTIONS(716), - [anon_sym_L_DQUOTE] = ACTIONS(719), - [anon_sym_u_DQUOTE] = ACTIONS(719), - [anon_sym_U_DQUOTE] = ACTIONS(719), - [anon_sym_u8_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(719), - [sym_true] = ACTIONS(722), - [sym_false] = ACTIONS(722), - [sym_null] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - }, - [51] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_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__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(317), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(772), - [sym_identifier] = ACTIONS(774), - [aux_sym_preproc_include_token1] = ACTIONS(616), - [aux_sym_preproc_def_token1] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(616), - [sym_preproc_directive] = ACTIONS(616), + [49] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(729), + [aux_sym_preproc_include_token1] = ACTIONS(723), + [aux_sym_preproc_def_token1] = ACTIONS(723), + [aux_sym_preproc_if_token1] = ACTIONS(723), + [aux_sym_preproc_if_token2] = ACTIONS(723), + [aux_sym_preproc_ifdef_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token2] = ACTIONS(723), + [sym_preproc_directive] = ACTIONS(723), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13853,19 +13589,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(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_typedef] = ACTIONS(317), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(616), - [anon_sym___clrcall] = ACTIONS(616), - [anon_sym___stdcall] = ACTIONS(616), - [anon_sym___fastcall] = ACTIONS(616), - [anon_sym___thiscall] = ACTIONS(616), - [anon_sym___vectorcall] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(723), + [anon_sym___clrcall] = ACTIONS(723), + [anon_sym___stdcall] = ACTIONS(723), + [anon_sym___fastcall] = ACTIONS(723), + [anon_sym___thiscall] = ACTIONS(723), + [anon_sym___vectorcall] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(321), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13882,18 +13618,18 @@ 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(616), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), - [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_if] = ACTIONS(323), + [anon_sym_else] = ACTIONS(723), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13913,59 +13649,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(317), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(776), - [sym_identifier] = ACTIONS(774), + [50] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1003), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(731), [aux_sym_preproc_include_token1] = ACTIONS(618), [aux_sym_preproc_def_token1] = ACTIONS(618), [aux_sym_preproc_if_token1] = ACTIONS(618), @@ -13979,8 +13714,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_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -13991,7 +13726,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(618), [anon_sym___thiscall] = ACTIONS(618), [anon_sym___vectorcall] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14008,18 +13744,18 @@ 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_if] = ACTIONS(367), [anon_sym_else] = ACTIONS(618), - [anon_sym_switch] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(369), [anon_sym_case] = ACTIONS(618), [anon_sym_default] = ACTIONS(618), - [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_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14039,65 +13775,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1017), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_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__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(729), - [aux_sym_preproc_include_token1] = ACTIONS(616), - [aux_sym_preproc_def_token1] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(616), - [aux_sym_preproc_if_token2] = ACTIONS(616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(616), - [sym_preproc_directive] = ACTIONS(616), + [51] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1002), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(60), + [ts_builtin_sym_end] = ACTIONS(733), + [sym_identifier] = ACTIONS(727), + [aux_sym_preproc_include_token1] = ACTIONS(721), + [aux_sym_preproc_def_token1] = ACTIONS(721), + [aux_sym_preproc_if_token1] = ACTIONS(721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(721), + [sym_preproc_directive] = ACTIONS(721), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14105,19 +13841,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(367), - [anon_sym_typedef] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(616), - [anon_sym___clrcall] = ACTIONS(616), - [anon_sym___stdcall] = ACTIONS(616), - [anon_sym___fastcall] = ACTIONS(616), - [anon_sym___thiscall] = ACTIONS(616), - [anon_sym___vectorcall] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym___cdecl] = ACTIONS(721), + [anon_sym___clrcall] = ACTIONS(721), + [anon_sym___stdcall] = ACTIONS(721), + [anon_sym___fastcall] = ACTIONS(721), + [anon_sym___thiscall] = ACTIONS(721), + [anon_sym___vectorcall] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14134,18 +13870,18 @@ 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(375), - [anon_sym_else] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(721), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(721), + [anon_sym_default] = ACTIONS(721), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14165,191 +13901,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1017), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_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__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(778), - [aux_sym_preproc_include_token1] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(627), - [aux_sym_preproc_if_token2] = ACTIONS(627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(629), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_typedef] = ACTIONS(784), - [anon_sym_extern] = ACTIONS(647), - [anon_sym___attribute__] = ACTIONS(650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(653), - [anon_sym___declspec] = ACTIONS(656), - [anon_sym___cdecl] = ACTIONS(627), - [anon_sym___clrcall] = ACTIONS(627), - [anon_sym___stdcall] = ACTIONS(627), - [anon_sym___fastcall] = ACTIONS(627), - [anon_sym___thiscall] = ACTIONS(627), - [anon_sym___vectorcall] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_static] = ACTIONS(647), - [anon_sym_auto] = ACTIONS(647), - [anon_sym_register] = ACTIONS(647), - [anon_sym_inline] = ACTIONS(647), - [anon_sym_const] = ACTIONS(662), - [anon_sym_volatile] = ACTIONS(662), - [anon_sym_restrict] = ACTIONS(662), - [anon_sym__Atomic] = ACTIONS(662), - [anon_sym_signed] = ACTIONS(665), - [anon_sym_unsigned] = ACTIONS(665), - [anon_sym_long] = ACTIONS(665), - [anon_sym_short] = ACTIONS(665), - [sym_primitive_type] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_union] = ACTIONS(677), - [anon_sym_if] = ACTIONS(790), - [anon_sym_else] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(793), - [anon_sym_case] = ACTIONS(627), - [anon_sym_default] = ACTIONS(627), - [anon_sym_while] = ACTIONS(796), - [anon_sym_do] = ACTIONS(799), - [anon_sym_for] = ACTIONS(802), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(808), - [anon_sym_continue] = ACTIONS(811), - [anon_sym_goto] = ACTIONS(814), - [anon_sym_DASH_DASH] = ACTIONS(707), - [anon_sym_PLUS_PLUS] = ACTIONS(707), - [anon_sym_sizeof] = ACTIONS(710), - [sym_number_literal] = ACTIONS(713), - [anon_sym_L_SQUOTE] = ACTIONS(716), - [anon_sym_u_SQUOTE] = ACTIONS(716), - [anon_sym_U_SQUOTE] = ACTIONS(716), - [anon_sym_u8_SQUOTE] = ACTIONS(716), - [anon_sym_SQUOTE] = ACTIONS(716), - [anon_sym_L_DQUOTE] = ACTIONS(719), - [anon_sym_u_DQUOTE] = ACTIONS(719), - [anon_sym_U_DQUOTE] = ACTIONS(719), - [anon_sym_u8_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(719), - [sym_true] = ACTIONS(722), - [sym_false] = ACTIONS(722), - [sym_null] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - }, - [55] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_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__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(317), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(727), - [sym_identifier] = ACTIONS(774), - [aux_sym_preproc_include_token1] = ACTIONS(620), - [aux_sym_preproc_def_token1] = ACTIONS(620), - [aux_sym_preproc_if_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(620), - [sym_preproc_directive] = ACTIONS(620), + [52] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1002), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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_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__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(735), + [sym_identifier] = ACTIONS(727), + [aux_sym_preproc_include_token1] = ACTIONS(723), + [aux_sym_preproc_def_token1] = ACTIONS(723), + [aux_sym_preproc_if_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token2] = ACTIONS(723), + [sym_preproc_directive] = ACTIONS(723), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14363,12 +13973,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(620), - [anon_sym___clrcall] = ACTIONS(620), - [anon_sym___stdcall] = ACTIONS(620), - [anon_sym___fastcall] = ACTIONS(620), - [anon_sym___thiscall] = ACTIONS(620), - [anon_sym___vectorcall] = ACTIONS(620), + [anon_sym___cdecl] = ACTIONS(723), + [anon_sym___clrcall] = ACTIONS(723), + [anon_sym___stdcall] = ACTIONS(723), + [anon_sym___fastcall] = ACTIONS(723), + [anon_sym___thiscall] = ACTIONS(723), + [anon_sym___vectorcall] = ACTIONS(723), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -14387,10 +13997,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(620), + [anon_sym_else] = ACTIONS(723), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -14417,149 +14027,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(817), - [aux_sym_preproc_include_token1] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(629), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_typedef] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(647), - [anon_sym___attribute__] = ACTIONS(650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(653), - [anon_sym___declspec] = ACTIONS(656), - [anon_sym___cdecl] = ACTIONS(627), - [anon_sym___clrcall] = ACTIONS(627), - [anon_sym___stdcall] = ACTIONS(627), - [anon_sym___fastcall] = ACTIONS(627), - [anon_sym___thiscall] = ACTIONS(627), - [anon_sym___vectorcall] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(826), - [anon_sym_RBRACE] = ACTIONS(731), - [anon_sym_static] = ACTIONS(647), - [anon_sym_auto] = ACTIONS(647), - [anon_sym_register] = ACTIONS(647), - [anon_sym_inline] = ACTIONS(647), - [anon_sym_const] = ACTIONS(662), - [anon_sym_volatile] = ACTIONS(662), - [anon_sym_restrict] = ACTIONS(662), - [anon_sym__Atomic] = ACTIONS(662), - [anon_sym_signed] = ACTIONS(665), - [anon_sym_unsigned] = ACTIONS(665), - [anon_sym_long] = ACTIONS(665), - [anon_sym_short] = ACTIONS(665), - [sym_primitive_type] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_union] = ACTIONS(677), - [anon_sym_if] = ACTIONS(829), - [anon_sym_else] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(832), - [anon_sym_case] = ACTIONS(627), - [anon_sym_default] = ACTIONS(627), - [anon_sym_while] = ACTIONS(835), - [anon_sym_do] = ACTIONS(838), - [anon_sym_for] = ACTIONS(841), - [anon_sym_return] = ACTIONS(844), - [anon_sym_break] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_goto] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(707), - [anon_sym_PLUS_PLUS] = ACTIONS(707), - [anon_sym_sizeof] = ACTIONS(710), - [sym_number_literal] = ACTIONS(713), - [anon_sym_L_SQUOTE] = ACTIONS(716), - [anon_sym_u_SQUOTE] = ACTIONS(716), - [anon_sym_U_SQUOTE] = ACTIONS(716), - [anon_sym_u8_SQUOTE] = ACTIONS(716), - [anon_sym_SQUOTE] = ACTIONS(716), - [anon_sym_L_DQUOTE] = ACTIONS(719), - [anon_sym_u_DQUOTE] = ACTIONS(719), - [anon_sym_U_DQUOTE] = ACTIONS(719), - [anon_sym_u8_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(719), - [sym_true] = ACTIONS(722), - [sym_false] = ACTIONS(722), - [sym_null] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - }, - [57] = { + [53] = { [sym_declaration] = STATE(51), [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1002), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym_attributed_statement] = STATE(51), [sym_labeled_statement] = STATE(51), [sym_expression_statement] = STATE(51), [sym_if_statement] = STATE(51), @@ -14571,37 +14055,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(51), [sym_continue_statement] = STATE(51), [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(317), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [aux_sym_case_statement_repeat1] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(856), - [sym_identifier] = ACTIONS(774), - [aux_sym_preproc_include_token1] = ACTIONS(622), - [aux_sym_preproc_def_token1] = ACTIONS(622), - [aux_sym_preproc_if_token1] = ACTIONS(622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(622), - [sym_preproc_directive] = ACTIONS(622), + [ts_builtin_sym_end] = ACTIONS(737), + [sym_identifier] = ACTIONS(727), + [aux_sym_preproc_include_token1] = ACTIONS(616), + [aux_sym_preproc_def_token1] = ACTIONS(616), + [aux_sym_preproc_if_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(616), + [sym_preproc_directive] = ACTIONS(616), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14615,12 +14099,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(622), - [anon_sym___clrcall] = ACTIONS(622), - [anon_sym___stdcall] = ACTIONS(622), - [anon_sym___fastcall] = ACTIONS(622), - [anon_sym___thiscall] = ACTIONS(622), - [anon_sym___vectorcall] = ACTIONS(622), + [anon_sym___cdecl] = ACTIONS(616), + [anon_sym___clrcall] = ACTIONS(616), + [anon_sym___stdcall] = ACTIONS(616), + [anon_sym___fastcall] = ACTIONS(616), + [anon_sym___thiscall] = ACTIONS(616), + [anon_sym___vectorcall] = ACTIONS(616), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -14639,10 +14123,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(622), + [anon_sym_else] = ACTIONS(616), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), + [anon_sym_case] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -14669,65 +14153,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1017), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_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__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(729), - [aux_sym_preproc_include_token1] = ACTIONS(620), - [aux_sym_preproc_def_token1] = ACTIONS(620), - [aux_sym_preproc_if_token1] = ACTIONS(620), - [aux_sym_preproc_if_token2] = ACTIONS(620), - [aux_sym_preproc_ifdef_token1] = ACTIONS(620), - [aux_sym_preproc_ifdef_token2] = ACTIONS(620), - [sym_preproc_directive] = ACTIONS(620), + [54] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1003), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(731), + [aux_sym_preproc_include_token1] = ACTIONS(616), + [aux_sym_preproc_def_token1] = ACTIONS(616), + [aux_sym_preproc_if_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(616), + [sym_preproc_directive] = ACTIONS(616), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14735,19 +14218,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(367), - [anon_sym_typedef] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(620), - [anon_sym___clrcall] = ACTIONS(620), - [anon_sym___stdcall] = ACTIONS(620), - [anon_sym___fastcall] = ACTIONS(620), - [anon_sym___thiscall] = ACTIONS(620), - [anon_sym___vectorcall] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym___cdecl] = ACTIONS(616), + [anon_sym___clrcall] = ACTIONS(616), + [anon_sym___stdcall] = ACTIONS(616), + [anon_sym___fastcall] = ACTIONS(616), + [anon_sym___thiscall] = ACTIONS(616), + [anon_sym___vectorcall] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(737), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14764,18 +14248,18 @@ 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(375), - [anon_sym_else] = ACTIONS(620), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [anon_sym_if] = ACTIONS(367), + [anon_sym_else] = ACTIONS(616), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14795,65 +14279,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1017), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_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(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(53), + [55] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(59), [sym_identifier] = ACTIONS(729), - [aux_sym_preproc_include_token1] = ACTIONS(622), - [aux_sym_preproc_def_token1] = ACTIONS(622), - [aux_sym_preproc_if_token1] = ACTIONS(622), - [aux_sym_preproc_if_token2] = ACTIONS(622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(622), - [sym_preproc_directive] = ACTIONS(622), + [aux_sym_preproc_include_token1] = ACTIONS(616), + [aux_sym_preproc_def_token1] = ACTIONS(616), + [aux_sym_preproc_if_token1] = ACTIONS(616), + [aux_sym_preproc_if_token2] = ACTIONS(616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(616), + [sym_preproc_directive] = ACTIONS(616), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14861,19 +14345,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(367), - [anon_sym_typedef] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_typedef] = ACTIONS(317), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(622), - [anon_sym___clrcall] = ACTIONS(622), - [anon_sym___stdcall] = ACTIONS(622), - [anon_sym___fastcall] = ACTIONS(622), - [anon_sym___thiscall] = ACTIONS(622), - [anon_sym___vectorcall] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym___cdecl] = ACTIONS(616), + [anon_sym___clrcall] = ACTIONS(616), + [anon_sym___stdcall] = ACTIONS(616), + [anon_sym___fastcall] = ACTIONS(616), + [anon_sym___thiscall] = ACTIONS(616), + [anon_sym___vectorcall] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(321), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14890,18 +14374,18 @@ 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(375), - [anon_sym_else] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [anon_sym_if] = ACTIONS(323), + [anon_sym_else] = ACTIONS(616), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14921,61 +14405,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(725), + [56] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(729), [aux_sym_preproc_include_token1] = ACTIONS(618), [aux_sym_preproc_def_token1] = ACTIONS(618), [aux_sym_preproc_if_token1] = ACTIONS(618), + [aux_sym_preproc_if_token2] = ACTIONS(618), [aux_sym_preproc_ifdef_token1] = ACTIONS(618), [aux_sym_preproc_ifdef_token2] = ACTIONS(618), [sym_preproc_directive] = ACTIONS(618), @@ -14986,8 +14471,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_SEMI] = ACTIONS(313), - [anon_sym_typedef] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_typedef] = ACTIONS(317), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -14998,8 +14483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(618), [anon_sym___thiscall] = ACTIONS(618), [anon_sym___vectorcall] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(321), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15047,64 +14531,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(725), - [aux_sym_preproc_include_token1] = ACTIONS(622), - [aux_sym_preproc_def_token1] = ACTIONS(622), - [aux_sym_preproc_if_token1] = ACTIONS(622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(622), - [sym_preproc_directive] = ACTIONS(622), + [57] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1003), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(739), + [aux_sym_preproc_include_token1] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(623), + [aux_sym_preproc_if_token1] = ACTIONS(623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(623), + [sym_preproc_directive] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_typedef] = ACTIONS(745), + [anon_sym_extern] = ACTIONS(643), + [anon_sym___attribute__] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(649), + [anon_sym___declspec] = ACTIONS(652), + [anon_sym___cdecl] = ACTIONS(623), + [anon_sym___clrcall] = ACTIONS(623), + [anon_sym___stdcall] = ACTIONS(623), + [anon_sym___fastcall] = ACTIONS(623), + [anon_sym___thiscall] = ACTIONS(623), + [anon_sym___vectorcall] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_static] = ACTIONS(643), + [anon_sym_auto] = ACTIONS(643), + [anon_sym_register] = ACTIONS(643), + [anon_sym_inline] = ACTIONS(643), + [anon_sym_const] = ACTIONS(658), + [anon_sym_volatile] = ACTIONS(658), + [anon_sym_restrict] = ACTIONS(658), + [anon_sym__Atomic] = ACTIONS(658), + [anon_sym_signed] = ACTIONS(661), + [anon_sym_unsigned] = ACTIONS(661), + [anon_sym_long] = ACTIONS(661), + [anon_sym_short] = ACTIONS(661), + [sym_primitive_type] = ACTIONS(664), + [anon_sym_enum] = ACTIONS(667), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_union] = ACTIONS(673), + [anon_sym_if] = ACTIONS(753), + [anon_sym_else] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(756), + [anon_sym_case] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(762), + [anon_sym_for] = ACTIONS(765), + [anon_sym_return] = ACTIONS(768), + [anon_sym_break] = ACTIONS(771), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_goto] = ACTIONS(777), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_sizeof] = ACTIONS(706), + [sym_number_literal] = ACTIONS(709), + [anon_sym_L_SQUOTE] = ACTIONS(712), + [anon_sym_u_SQUOTE] = ACTIONS(712), + [anon_sym_U_SQUOTE] = ACTIONS(712), + [anon_sym_u8_SQUOTE] = ACTIONS(712), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_L_DQUOTE] = ACTIONS(715), + [anon_sym_u_DQUOTE] = ACTIONS(715), + [anon_sym_U_DQUOTE] = ACTIONS(715), + [anon_sym_u8_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_comment] = ACTIONS(3), + }, + [58] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1003), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(731), + [aux_sym_preproc_include_token1] = ACTIONS(721), + [aux_sym_preproc_def_token1] = ACTIONS(721), + [aux_sym_preproc_if_token1] = ACTIONS(721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(721), + [sym_preproc_directive] = ACTIONS(721), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15112,20 +14722,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(313), - [anon_sym_typedef] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(622), - [anon_sym___clrcall] = ACTIONS(622), - [anon_sym___stdcall] = ACTIONS(622), - [anon_sym___fastcall] = ACTIONS(622), - [anon_sym___thiscall] = ACTIONS(622), - [anon_sym___vectorcall] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(856), + [anon_sym___cdecl] = ACTIONS(721), + [anon_sym___clrcall] = ACTIONS(721), + [anon_sym___stdcall] = ACTIONS(721), + [anon_sym___fastcall] = ACTIONS(721), + [anon_sym___thiscall] = ACTIONS(721), + [anon_sym___vectorcall] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(733), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15142,18 +14752,18 @@ 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(323), - [anon_sym_else] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(367), + [anon_sym_else] = ACTIONS(721), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(721), + [anon_sym_default] = ACTIONS(721), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -15173,64 +14783,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1009), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(389), - [sym_ms_declspec_modifier] = STATE(650), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym_attributed_non_case_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(725), - [aux_sym_preproc_include_token1] = ACTIONS(616), - [aux_sym_preproc_def_token1] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(616), - [sym_preproc_directive] = ACTIONS(616), + [59] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(729), + [aux_sym_preproc_include_token1] = ACTIONS(721), + [aux_sym_preproc_def_token1] = ACTIONS(721), + [aux_sym_preproc_if_token1] = ACTIONS(721), + [aux_sym_preproc_if_token2] = ACTIONS(721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(721), + [sym_preproc_directive] = ACTIONS(721), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15238,20 +14849,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(313), - [anon_sym_typedef] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_typedef] = ACTIONS(317), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(616), - [anon_sym___clrcall] = ACTIONS(616), - [anon_sym___stdcall] = ACTIONS(616), - [anon_sym___fastcall] = ACTIONS(616), - [anon_sym___thiscall] = ACTIONS(616), - [anon_sym___vectorcall] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym___cdecl] = ACTIONS(721), + [anon_sym___clrcall] = ACTIONS(721), + [anon_sym___stdcall] = ACTIONS(721), + [anon_sym___fastcall] = ACTIONS(721), + [anon_sym___thiscall] = ACTIONS(721), + [anon_sym___vectorcall] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(321), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15269,10 +14879,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(323), - [anon_sym_else] = ACTIONS(616), + [anon_sym_else] = ACTIONS(721), [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), + [anon_sym_case] = ACTIONS(721), + [anon_sym_default] = ACTIONS(721), [anon_sym_while] = ACTIONS(331), [anon_sym_do] = ACTIONS(333), [anon_sym_for] = ACTIONS(335), @@ -15299,42 +14909,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_declaration] = STATE(499), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(650), - [sym_ms_declspec_modifier] = STATE(650), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(730), - [sym_comma_expression] = STATE(1366), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(858), + [60] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1002), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(60), + [ts_builtin_sym_end] = ACTIONS(751), + [sym_identifier] = ACTIONS(780), + [aux_sym_preproc_include_token1] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(623), + [aux_sym_preproc_if_token1] = ACTIONS(623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(623), + [sym_preproc_directive] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(783), + [anon_sym_typedef] = ACTIONS(786), + [anon_sym_extern] = ACTIONS(643), + [anon_sym___attribute__] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(649), + [anon_sym___declspec] = ACTIONS(652), + [anon_sym___cdecl] = ACTIONS(623), + [anon_sym___clrcall] = ACTIONS(623), + [anon_sym___stdcall] = ACTIONS(623), + [anon_sym___fastcall] = ACTIONS(623), + [anon_sym___thiscall] = ACTIONS(623), + [anon_sym___vectorcall] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_static] = ACTIONS(643), + [anon_sym_auto] = ACTIONS(643), + [anon_sym_register] = ACTIONS(643), + [anon_sym_inline] = ACTIONS(643), + [anon_sym_const] = ACTIONS(658), + [anon_sym_volatile] = ACTIONS(658), + [anon_sym_restrict] = ACTIONS(658), + [anon_sym__Atomic] = ACTIONS(658), + [anon_sym_signed] = ACTIONS(661), + [anon_sym_unsigned] = ACTIONS(661), + [anon_sym_long] = ACTIONS(661), + [anon_sym_short] = ACTIONS(661), + [sym_primitive_type] = ACTIONS(664), + [anon_sym_enum] = ACTIONS(667), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_union] = ACTIONS(673), + [anon_sym_if] = ACTIONS(792), + [anon_sym_else] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_while] = ACTIONS(798), + [anon_sym_do] = ACTIONS(801), + [anon_sym_for] = ACTIONS(804), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(813), + [anon_sym_goto] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_sizeof] = ACTIONS(706), + [sym_number_literal] = ACTIONS(709), + [anon_sym_L_SQUOTE] = ACTIONS(712), + [anon_sym_u_SQUOTE] = ACTIONS(712), + [anon_sym_U_SQUOTE] = ACTIONS(712), + [anon_sym_u8_SQUOTE] = ACTIONS(712), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_L_DQUOTE] = ACTIONS(715), + [anon_sym_u_DQUOTE] = ACTIONS(715), + [anon_sym_U_DQUOTE] = ACTIONS(715), + [anon_sym_u8_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1003), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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_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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(731), + [aux_sym_preproc_include_token1] = ACTIONS(723), + [aux_sym_preproc_def_token1] = ACTIONS(723), + [aux_sym_preproc_if_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token2] = ACTIONS(723), + [sym_preproc_directive] = ACTIONS(723), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15342,11 +15100,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(860), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_typedef] = ACTIONS(359), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(862), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(723), + [anon_sym___clrcall] = ACTIONS(723), + [anon_sym___stdcall] = ACTIONS(723), + [anon_sym___fastcall] = ACTIONS(723), + [anon_sym___thiscall] = ACTIONS(723), + [anon_sym___vectorcall] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(735), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15363,6 +15130,18 @@ 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(367), + [anon_sym_else] = ACTIONS(723), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -15382,41 +15161,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(497), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(650), - [sym_ms_declspec_modifier] = STATE(650), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(720), - [sym_comma_expression] = STATE(1442), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [62] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1012), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [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__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(819), + [aux_sym_preproc_include_token1] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(623), + [aux_sym_preproc_if_token1] = ACTIONS(623), + [aux_sym_preproc_if_token2] = ACTIONS(623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(623), + [sym_preproc_directive] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_typedef] = ACTIONS(825), + [anon_sym_extern] = ACTIONS(643), + [anon_sym___attribute__] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(649), + [anon_sym___declspec] = ACTIONS(652), + [anon_sym___cdecl] = ACTIONS(623), + [anon_sym___clrcall] = ACTIONS(623), + [anon_sym___stdcall] = ACTIONS(623), + [anon_sym___fastcall] = ACTIONS(623), + [anon_sym___thiscall] = ACTIONS(623), + [anon_sym___vectorcall] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_static] = ACTIONS(643), + [anon_sym_auto] = ACTIONS(643), + [anon_sym_register] = ACTIONS(643), + [anon_sym_inline] = ACTIONS(643), + [anon_sym_const] = ACTIONS(658), + [anon_sym_volatile] = ACTIONS(658), + [anon_sym_restrict] = ACTIONS(658), + [anon_sym__Atomic] = ACTIONS(658), + [anon_sym_signed] = ACTIONS(661), + [anon_sym_unsigned] = ACTIONS(661), + [anon_sym_long] = ACTIONS(661), + [anon_sym_short] = ACTIONS(661), + [sym_primitive_type] = ACTIONS(664), + [anon_sym_enum] = ACTIONS(667), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_union] = ACTIONS(673), + [anon_sym_if] = ACTIONS(831), + [anon_sym_else] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(834), + [anon_sym_case] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_while] = ACTIONS(837), + [anon_sym_do] = ACTIONS(840), + [anon_sym_for] = ACTIONS(843), + [anon_sym_return] = ACTIONS(846), + [anon_sym_break] = ACTIONS(849), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_goto] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_sizeof] = ACTIONS(706), + [sym_number_literal] = ACTIONS(709), + [anon_sym_L_SQUOTE] = ACTIONS(712), + [anon_sym_u_SQUOTE] = ACTIONS(712), + [anon_sym_U_SQUOTE] = ACTIONS(712), + [anon_sym_u8_SQUOTE] = ACTIONS(712), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_L_DQUOTE] = ACTIONS(715), + [anon_sym_u_DQUOTE] = ACTIONS(715), + [anon_sym_U_DQUOTE] = ACTIONS(715), + [anon_sym_u8_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_comment] = ACTIONS(3), + }, + [63] = { + [sym_declaration] = STATE(496), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1002), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(645), + [sym_ms_declspec_modifier] = STATE(645), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(731), + [sym_comma_expression] = STATE(1437), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(858), + [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(860), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(862), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [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), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [64] = { + [sym_declaration] = STATE(489), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1002), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(645), + [sym_ms_declspec_modifier] = STATE(645), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(726), + [sym_comma_expression] = STATE(1427), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15466,40 +15454,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [65] = { - [sym_declaration] = STATE(502), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(650), - [sym_ms_declspec_modifier] = STATE(650), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(724), - [sym_comma_expression] = STATE(1432), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [sym_declaration] = STATE(476), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1002), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(645), + [sym_ms_declspec_modifier] = STATE(645), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(734), + [sym_comma_expression] = STATE(1445), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15549,40 +15537,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(490), - [sym__declaration_modifiers] = STATE(650), - [sym__declaration_specifiers] = STATE(1011), - [sym_attribute_specifier] = STATE(650), - [sym_attribute_declaration] = STATE(650), - [sym_ms_declspec_modifier] = STATE(650), - [sym_storage_class_specifier] = STATE(650), - [sym_type_qualifier] = STATE(650), - [sym__type_specifier] = STATE(696), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(739), - [sym_comma_expression] = STATE(1450), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym__declaration_specifiers_repeat1] = STATE(650), - [aux_sym_sized_type_specifier_repeat1] = STATE(775), + [sym_declaration] = STATE(499), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1002), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(645), + [sym_ms_declspec_modifier] = STATE(645), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(703), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1361), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15632,24 +15620,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [sym__expression] = STATE(607), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(591), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(591), - [sym_call_expression] = STATE(591), - [sym_field_expression] = STATE(591), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(591), - [sym_initializer_list] = STATE(608), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(533), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(555), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(555), + [sym_call_expression] = STATE(555), + [sym_field_expression] = STATE(555), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(555), + [sym_initializer_list] = STATE(532), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym_identifier] = ACTIONS(870), [anon_sym_COMMA] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(872), @@ -15760,7 +15748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(890), [anon_sym_union] = ACTIONS(890), [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), + [anon_sym_else] = ACTIONS(894), [anon_sym_switch] = ACTIONS(890), [anon_sym_case] = ACTIONS(890), [anon_sym_default] = ACTIONS(890), @@ -15791,630 +15779,552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [69] = { - [sym_identifier] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(894), - [aux_sym_preproc_if_token2] = ACTIONS(894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(894), - [aux_sym_preproc_else_token1] = ACTIONS(894), - [aux_sym_preproc_elif_token1] = ACTIONS(894), - [sym_preproc_directive] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(896), - [anon_sym___declspec] = ACTIONS(894), - [anon_sym___cdecl] = ACTIONS(894), - [anon_sym___clrcall] = ACTIONS(894), - [anon_sym___stdcall] = ACTIONS(894), - [anon_sym___fastcall] = ACTIONS(894), - [anon_sym___thiscall] = ACTIONS(894), - [anon_sym___vectorcall] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(894), - [anon_sym_restrict] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(894), - [anon_sym_signed] = ACTIONS(894), - [anon_sym_unsigned] = ACTIONS(894), - [anon_sym_long] = ACTIONS(894), - [anon_sym_short] = ACTIONS(894), - [sym_primitive_type] = ACTIONS(894), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(894), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(894), - [anon_sym_else] = ACTIONS(894), - [anon_sym_switch] = ACTIONS(894), - [anon_sym_case] = ACTIONS(894), - [anon_sym_default] = ACTIONS(894), - [anon_sym_while] = ACTIONS(894), - [anon_sym_do] = ACTIONS(894), - [anon_sym_for] = ACTIONS(894), - [anon_sym_return] = ACTIONS(894), - [anon_sym_break] = ACTIONS(894), - [anon_sym_continue] = ACTIONS(894), - [anon_sym_goto] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(894), - [sym_number_literal] = ACTIONS(896), - [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(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), - [sym_null] = ACTIONS(894), + [sym_identifier] = ACTIONS(896), + [aux_sym_preproc_include_token1] = ACTIONS(896), + [aux_sym_preproc_def_token1] = ACTIONS(896), + [aux_sym_preproc_if_token1] = ACTIONS(896), + [aux_sym_preproc_if_token2] = ACTIONS(896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(896), + [aux_sym_preproc_else_token1] = ACTIONS(896), + [aux_sym_preproc_elif_token1] = ACTIONS(896), + [sym_preproc_directive] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_TILDE] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_typedef] = ACTIONS(896), + [anon_sym_extern] = ACTIONS(896), + [anon_sym___attribute__] = ACTIONS(896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(898), + [anon_sym___declspec] = ACTIONS(896), + [anon_sym___cdecl] = ACTIONS(896), + [anon_sym___clrcall] = ACTIONS(896), + [anon_sym___stdcall] = ACTIONS(896), + [anon_sym___fastcall] = ACTIONS(896), + [anon_sym___thiscall] = ACTIONS(896), + [anon_sym___vectorcall] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_static] = ACTIONS(896), + [anon_sym_auto] = ACTIONS(896), + [anon_sym_register] = ACTIONS(896), + [anon_sym_inline] = ACTIONS(896), + [anon_sym_const] = ACTIONS(896), + [anon_sym_volatile] = ACTIONS(896), + [anon_sym_restrict] = ACTIONS(896), + [anon_sym__Atomic] = ACTIONS(896), + [anon_sym_signed] = ACTIONS(896), + [anon_sym_unsigned] = ACTIONS(896), + [anon_sym_long] = ACTIONS(896), + [anon_sym_short] = ACTIONS(896), + [sym_primitive_type] = ACTIONS(896), + [anon_sym_enum] = ACTIONS(896), + [anon_sym_struct] = ACTIONS(896), + [anon_sym_union] = ACTIONS(896), + [anon_sym_if] = ACTIONS(896), + [anon_sym_else] = ACTIONS(896), + [anon_sym_switch] = ACTIONS(896), + [anon_sym_case] = ACTIONS(896), + [anon_sym_default] = ACTIONS(896), + [anon_sym_while] = ACTIONS(896), + [anon_sym_do] = ACTIONS(896), + [anon_sym_for] = ACTIONS(896), + [anon_sym_return] = ACTIONS(896), + [anon_sym_break] = ACTIONS(896), + [anon_sym_continue] = ACTIONS(896), + [anon_sym_goto] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_sizeof] = ACTIONS(896), + [sym_number_literal] = ACTIONS(898), + [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(898), + [anon_sym_u_DQUOTE] = ACTIONS(898), + [anon_sym_U_DQUOTE] = ACTIONS(898), + [anon_sym_u8_DQUOTE] = ACTIONS(898), + [anon_sym_DQUOTE] = ACTIONS(898), + [sym_true] = ACTIONS(896), + [sym_false] = ACTIONS(896), + [sym_null] = ACTIONS(896), [sym_comment] = ACTIONS(3), }, [70] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_if_token2] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [aux_sym_preproc_else_token1] = ACTIONS(898), - [aux_sym_preproc_elif_token1] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), + [sym_identifier] = ACTIONS(900), + [aux_sym_preproc_include_token1] = ACTIONS(900), + [aux_sym_preproc_def_token1] = ACTIONS(900), + [aux_sym_preproc_if_token1] = ACTIONS(900), + [aux_sym_preproc_if_token2] = ACTIONS(900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(900), + [aux_sym_preproc_else_token1] = ACTIONS(900), + [aux_sym_preproc_elif_token1] = ACTIONS(900), + [sym_preproc_directive] = ACTIONS(900), + [anon_sym_LPAREN2] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_typedef] = ACTIONS(900), + [anon_sym_extern] = ACTIONS(900), + [anon_sym___attribute__] = ACTIONS(900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(902), + [anon_sym___declspec] = ACTIONS(900), + [anon_sym___cdecl] = ACTIONS(900), + [anon_sym___clrcall] = ACTIONS(900), + [anon_sym___stdcall] = ACTIONS(900), + [anon_sym___fastcall] = ACTIONS(900), + [anon_sym___thiscall] = ACTIONS(900), + [anon_sym___vectorcall] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_static] = ACTIONS(900), + [anon_sym_auto] = ACTIONS(900), + [anon_sym_register] = ACTIONS(900), + [anon_sym_inline] = ACTIONS(900), + [anon_sym_const] = ACTIONS(900), + [anon_sym_volatile] = ACTIONS(900), + [anon_sym_restrict] = ACTIONS(900), + [anon_sym__Atomic] = ACTIONS(900), + [anon_sym_signed] = ACTIONS(900), + [anon_sym_unsigned] = ACTIONS(900), + [anon_sym_long] = ACTIONS(900), + [anon_sym_short] = ACTIONS(900), + [sym_primitive_type] = ACTIONS(900), + [anon_sym_enum] = ACTIONS(900), + [anon_sym_struct] = ACTIONS(900), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(900), + [anon_sym_else] = ACTIONS(900), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_case] = ACTIONS(900), + [anon_sym_default] = ACTIONS(900), + [anon_sym_while] = ACTIONS(900), + [anon_sym_do] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_return] = ACTIONS(900), + [anon_sym_break] = ACTIONS(900), + [anon_sym_continue] = ACTIONS(900), + [anon_sym_goto] = ACTIONS(900), + [anon_sym_DASH_DASH] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_sizeof] = ACTIONS(900), + [sym_number_literal] = ACTIONS(902), + [anon_sym_L_SQUOTE] = ACTIONS(902), + [anon_sym_u_SQUOTE] = ACTIONS(902), + [anon_sym_U_SQUOTE] = ACTIONS(902), + [anon_sym_u8_SQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_L_DQUOTE] = ACTIONS(902), + [anon_sym_u_DQUOTE] = ACTIONS(902), + [anon_sym_U_DQUOTE] = ACTIONS(902), + [anon_sym_u8_DQUOTE] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(902), + [sym_true] = ACTIONS(900), + [sym_false] = ACTIONS(900), + [sym_null] = ACTIONS(900), [sym_comment] = ACTIONS(3), }, [71] = { - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_if_token2] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [aux_sym_preproc_else_token1] = ACTIONS(902), - [aux_sym_preproc_elif_token1] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), + [aux_sym_preproc_include_token1] = ACTIONS(904), + [aux_sym_preproc_def_token1] = ACTIONS(904), + [aux_sym_preproc_if_token1] = ACTIONS(904), + [aux_sym_preproc_if_token2] = ACTIONS(904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(904), + [aux_sym_preproc_else_token1] = ACTIONS(904), + [aux_sym_preproc_elif_token1] = ACTIONS(904), + [sym_preproc_directive] = ACTIONS(904), + [anon_sym_LPAREN2] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_typedef] = ACTIONS(904), + [anon_sym_extern] = ACTIONS(904), + [anon_sym___attribute__] = ACTIONS(904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(906), + [anon_sym___declspec] = ACTIONS(904), + [anon_sym___cdecl] = ACTIONS(904), + [anon_sym___clrcall] = ACTIONS(904), + [anon_sym___stdcall] = ACTIONS(904), + [anon_sym___fastcall] = ACTIONS(904), + [anon_sym___thiscall] = ACTIONS(904), + [anon_sym___vectorcall] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_static] = ACTIONS(904), + [anon_sym_auto] = ACTIONS(904), + [anon_sym_register] = ACTIONS(904), + [anon_sym_inline] = ACTIONS(904), + [anon_sym_const] = ACTIONS(904), + [anon_sym_volatile] = ACTIONS(904), + [anon_sym_restrict] = ACTIONS(904), + [anon_sym__Atomic] = ACTIONS(904), + [anon_sym_signed] = ACTIONS(904), + [anon_sym_unsigned] = ACTIONS(904), + [anon_sym_long] = ACTIONS(904), + [anon_sym_short] = ACTIONS(904), + [sym_primitive_type] = ACTIONS(904), + [anon_sym_enum] = ACTIONS(904), + [anon_sym_struct] = ACTIONS(904), + [anon_sym_union] = ACTIONS(904), + [anon_sym_if] = ACTIONS(904), + [anon_sym_else] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(904), + [anon_sym_case] = ACTIONS(904), + [anon_sym_default] = ACTIONS(904), + [anon_sym_while] = ACTIONS(904), + [anon_sym_do] = ACTIONS(904), + [anon_sym_for] = ACTIONS(904), + [anon_sym_return] = ACTIONS(904), + [anon_sym_break] = ACTIONS(904), + [anon_sym_continue] = ACTIONS(904), + [anon_sym_goto] = ACTIONS(904), + [anon_sym_DASH_DASH] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_sizeof] = ACTIONS(904), + [sym_number_literal] = ACTIONS(906), + [anon_sym_L_SQUOTE] = ACTIONS(906), + [anon_sym_u_SQUOTE] = ACTIONS(906), + [anon_sym_U_SQUOTE] = ACTIONS(906), + [anon_sym_u8_SQUOTE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_L_DQUOTE] = ACTIONS(906), + [anon_sym_u_DQUOTE] = ACTIONS(906), + [anon_sym_U_DQUOTE] = ACTIONS(906), + [anon_sym_u8_DQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(906), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [sym_null] = ACTIONS(904), [sym_comment] = ACTIONS(3), }, [72] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_if_token2] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [aux_sym_preproc_else_token1] = ACTIONS(906), - [aux_sym_preproc_elif_token1] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), + [sym_identifier] = ACTIONS(908), + [aux_sym_preproc_include_token1] = ACTIONS(908), + [aux_sym_preproc_def_token1] = ACTIONS(908), + [aux_sym_preproc_if_token1] = ACTIONS(908), + [aux_sym_preproc_if_token2] = ACTIONS(908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(908), + [aux_sym_preproc_else_token1] = ACTIONS(908), + [aux_sym_preproc_elif_token1] = ACTIONS(908), + [sym_preproc_directive] = ACTIONS(908), + [anon_sym_LPAREN2] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_TILDE] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_typedef] = ACTIONS(908), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(910), + [anon_sym___declspec] = ACTIONS(908), + [anon_sym___cdecl] = ACTIONS(908), + [anon_sym___clrcall] = ACTIONS(908), + [anon_sym___stdcall] = ACTIONS(908), + [anon_sym___fastcall] = ACTIONS(908), + [anon_sym___thiscall] = ACTIONS(908), + [anon_sym___vectorcall] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym_const] = ACTIONS(908), + [anon_sym_volatile] = ACTIONS(908), + [anon_sym_restrict] = ACTIONS(908), + [anon_sym__Atomic] = ACTIONS(908), + [anon_sym_signed] = ACTIONS(908), + [anon_sym_unsigned] = ACTIONS(908), + [anon_sym_long] = ACTIONS(908), + [anon_sym_short] = ACTIONS(908), + [sym_primitive_type] = ACTIONS(908), + [anon_sym_enum] = ACTIONS(908), + [anon_sym_struct] = ACTIONS(908), + [anon_sym_union] = ACTIONS(908), + [anon_sym_if] = ACTIONS(908), + [anon_sym_else] = ACTIONS(908), + [anon_sym_switch] = ACTIONS(908), + [anon_sym_case] = ACTIONS(908), + [anon_sym_default] = ACTIONS(908), + [anon_sym_while] = ACTIONS(908), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(908), + [anon_sym_return] = ACTIONS(908), + [anon_sym_break] = ACTIONS(908), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_goto] = ACTIONS(908), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(908), + [sym_number_literal] = ACTIONS(910), + [anon_sym_L_SQUOTE] = ACTIONS(910), + [anon_sym_u_SQUOTE] = ACTIONS(910), + [anon_sym_U_SQUOTE] = ACTIONS(910), + [anon_sym_u8_SQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(910), + [anon_sym_L_DQUOTE] = ACTIONS(910), + [anon_sym_u_DQUOTE] = ACTIONS(910), + [anon_sym_U_DQUOTE] = ACTIONS(910), + [anon_sym_u8_DQUOTE] = ACTIONS(910), + [anon_sym_DQUOTE] = ACTIONS(910), + [sym_true] = ACTIONS(908), + [sym_false] = ACTIONS(908), + [sym_null] = ACTIONS(908), [sym_comment] = ACTIONS(3), }, [73] = { - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_if_token2] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [aux_sym_preproc_else_token1] = ACTIONS(910), - [aux_sym_preproc_elif_token1] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), + [sym_identifier] = ACTIONS(912), + [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), + [anon_sym_LPAREN2] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_typedef] = ACTIONS(912), + [anon_sym_extern] = ACTIONS(912), + [anon_sym___attribute__] = ACTIONS(912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(912), + [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(914), + [anon_sym_static] = ACTIONS(912), + [anon_sym_auto] = ACTIONS(912), + [anon_sym_register] = ACTIONS(912), + [anon_sym_inline] = ACTIONS(912), + [anon_sym_const] = ACTIONS(912), + [anon_sym_volatile] = ACTIONS(912), + [anon_sym_restrict] = ACTIONS(912), + [anon_sym__Atomic] = ACTIONS(912), + [anon_sym_signed] = ACTIONS(912), + [anon_sym_unsigned] = ACTIONS(912), + [anon_sym_long] = ACTIONS(912), + [anon_sym_short] = ACTIONS(912), + [sym_primitive_type] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_struct] = ACTIONS(912), + [anon_sym_union] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_do] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_goto] = ACTIONS(912), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_sizeof] = ACTIONS(912), + [sym_number_literal] = ACTIONS(914), + [anon_sym_L_SQUOTE] = ACTIONS(914), + [anon_sym_u_SQUOTE] = ACTIONS(914), + [anon_sym_U_SQUOTE] = ACTIONS(914), + [anon_sym_u8_SQUOTE] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(914), + [anon_sym_L_DQUOTE] = ACTIONS(914), + [anon_sym_u_DQUOTE] = ACTIONS(914), + [anon_sym_U_DQUOTE] = ACTIONS(914), + [anon_sym_u8_DQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [sym_null] = ACTIONS(912), [sym_comment] = ACTIONS(3), }, [74] = { - [sym_identifier] = ACTIONS(914), - [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), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [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(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [sym_identifier] = ACTIONS(916), + [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), + [anon_sym_LPAREN2] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_typedef] = ACTIONS(916), + [anon_sym_extern] = ACTIONS(916), + [anon_sym___attribute__] = ACTIONS(916), + [anon_sym_LBRACK_LBRACK] = ACTIONS(918), + [anon_sym___declspec] = ACTIONS(916), + [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(918), + [anon_sym_static] = ACTIONS(916), + [anon_sym_auto] = ACTIONS(916), + [anon_sym_register] = ACTIONS(916), + [anon_sym_inline] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym_signed] = ACTIONS(916), + [anon_sym_unsigned] = ACTIONS(916), + [anon_sym_long] = ACTIONS(916), + [anon_sym_short] = ACTIONS(916), + [sym_primitive_type] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_struct] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(916), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(916), + [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_sizeof] = ACTIONS(916), + [sym_number_literal] = ACTIONS(918), + [anon_sym_L_SQUOTE] = ACTIONS(918), + [anon_sym_u_SQUOTE] = ACTIONS(918), + [anon_sym_U_SQUOTE] = ACTIONS(918), + [anon_sym_u8_SQUOTE] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(918), + [anon_sym_L_DQUOTE] = ACTIONS(918), + [anon_sym_u_DQUOTE] = ACTIONS(918), + [anon_sym_U_DQUOTE] = ACTIONS(918), + [anon_sym_u8_DQUOTE] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_null] = ACTIONS(916), [sym_comment] = ACTIONS(3), }, [75] = { - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_if_token2] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [aux_sym_preproc_else_token1] = ACTIONS(890), - [aux_sym_preproc_elif_token1] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_if_token2] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [aux_sym_preproc_else_token1] = ACTIONS(920), + [aux_sym_preproc_elif_token1] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), [sym_comment] = ACTIONS(3), }, [76] = { - [sym_identifier] = ACTIONS(918), - [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), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [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(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), - [sym_comment] = ACTIONS(3), - }, - [77] = { [sym_identifier] = ACTIONS(924), [aux_sym_preproc_include_token1] = ACTIONS(924), [aux_sym_preproc_def_token1] = ACTIONS(924), @@ -16492,7 +16402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(924), [sym_comment] = ACTIONS(3), }, - [78] = { + [77] = { [sym_identifier] = ACTIONS(928), [aux_sym_preproc_include_token1] = ACTIONS(928), [aux_sym_preproc_def_token1] = ACTIONS(928), @@ -16570,7 +16480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [79] = { + [78] = { [sym_identifier] = ACTIONS(932), [aux_sym_preproc_include_token1] = ACTIONS(932), [aux_sym_preproc_def_token1] = ACTIONS(932), @@ -16648,7 +16558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [80] = { + [79] = { [sym_identifier] = ACTIONS(936), [aux_sym_preproc_include_token1] = ACTIONS(936), [aux_sym_preproc_def_token1] = ACTIONS(936), @@ -16726,7 +16636,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, + [80] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [aux_sym_preproc_else_token1] = ACTIONS(940), + [aux_sym_preproc_elif_token1] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, [81] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [aux_sym_preproc_else_token1] = ACTIONS(944), + [aux_sym_preproc_elif_token1] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + }, + [82] = { [sym_identifier] = ACTIONS(940), [aux_sym_preproc_include_token1] = ACTIONS(940), [aux_sym_preproc_def_token1] = ACTIONS(940), @@ -16804,84 +16870,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [82] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [aux_sym_preproc_else_token1] = ACTIONS(944), - [aux_sym_preproc_elif_token1] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), - [sym_comment] = ACTIONS(3), - }, [83] = { [sym_identifier] = ACTIONS(948), [aux_sym_preproc_include_token1] = ACTIONS(948), @@ -16961,84 +16949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [84] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [aux_sym_preproc_else_token1] = ACTIONS(944), - [aux_sym_preproc_elif_token1] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), - [sym_comment] = ACTIONS(3), - }, - [85] = { [sym_identifier] = ACTIONS(952), [aux_sym_preproc_include_token1] = ACTIONS(952), [aux_sym_preproc_def_token1] = ACTIONS(952), @@ -17116,7 +17026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [86] = { + [85] = { [sym_identifier] = ACTIONS(956), [aux_sym_preproc_include_token1] = ACTIONS(956), [aux_sym_preproc_def_token1] = ACTIONS(956), @@ -17194,7 +17104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [87] = { + [86] = { [sym_identifier] = ACTIONS(960), [aux_sym_preproc_include_token1] = ACTIONS(960), [aux_sym_preproc_def_token1] = ACTIONS(960), @@ -17272,7 +17182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [88] = { + [87] = { [sym_identifier] = ACTIONS(964), [aux_sym_preproc_include_token1] = ACTIONS(964), [aux_sym_preproc_def_token1] = ACTIONS(964), @@ -17350,7 +17260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [89] = { + [88] = { [sym_identifier] = ACTIONS(968), [aux_sym_preproc_include_token1] = ACTIONS(968), [aux_sym_preproc_def_token1] = ACTIONS(968), @@ -17428,7 +17338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [90] = { + [89] = { [sym_identifier] = ACTIONS(972), [aux_sym_preproc_include_token1] = ACTIONS(972), [aux_sym_preproc_def_token1] = ACTIONS(972), @@ -17506,7 +17416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [91] = { + [90] = { [sym_identifier] = ACTIONS(976), [aux_sym_preproc_include_token1] = ACTIONS(976), [aux_sym_preproc_def_token1] = ACTIONS(976), @@ -17584,7 +17494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, - [92] = { + [91] = { [sym_identifier] = ACTIONS(980), [aux_sym_preproc_include_token1] = ACTIONS(980), [aux_sym_preproc_def_token1] = ACTIONS(980), @@ -17662,7 +17572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [93] = { + [92] = { [sym_identifier] = ACTIONS(984), [aux_sym_preproc_include_token1] = ACTIONS(984), [aux_sym_preproc_def_token1] = ACTIONS(984), @@ -17740,7 +17650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [94] = { + [93] = { [sym_identifier] = ACTIONS(988), [aux_sym_preproc_include_token1] = ACTIONS(988), [aux_sym_preproc_def_token1] = ACTIONS(988), @@ -17818,7 +17728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [95] = { + [94] = { [sym_identifier] = ACTIONS(992), [aux_sym_preproc_include_token1] = ACTIONS(992), [aux_sym_preproc_def_token1] = ACTIONS(992), @@ -17896,7 +17806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [96] = { + [95] = { [sym_identifier] = ACTIONS(996), [aux_sym_preproc_include_token1] = ACTIONS(996), [aux_sym_preproc_def_token1] = ACTIONS(996), @@ -17974,7 +17884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [97] = { + [96] = { [sym_identifier] = ACTIONS(1000), [aux_sym_preproc_include_token1] = ACTIONS(1000), [aux_sym_preproc_def_token1] = ACTIONS(1000), @@ -18052,7 +17962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [98] = { + [97] = { [sym_identifier] = ACTIONS(1004), [aux_sym_preproc_include_token1] = ACTIONS(1004), [aux_sym_preproc_def_token1] = ACTIONS(1004), @@ -18130,7 +18040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [99] = { + [98] = { [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), @@ -18208,6 +18118,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, + [99] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_if_token2] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [aux_sym_preproc_else_token1] = ACTIONS(948), + [aux_sym_preproc_elif_token1] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), + [sym_comment] = ACTIONS(3), + }, [100] = { [sym_identifier] = ACTIONS(1012), [aux_sym_preproc_include_token1] = ACTIONS(1012), @@ -19676,24 +19664,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [119] = { - [sym__expression] = STATE(634), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(591), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(591), - [sym_call_expression] = STATE(591), - [sym_field_expression] = STATE(591), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(591), - [sym_initializer_list] = STATE(608), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), + [sym__expression] = STATE(620), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(555), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(555), + [sym_call_expression] = STATE(555), + [sym_field_expression] = STATE(555), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(555), + [sym_initializer_list] = STATE(532), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), [sym_identifier] = ACTIONS(870), [anon_sym_LPAREN2] = ACTIONS(1088), [anon_sym_BANG] = ACTIONS(1090), @@ -20215,469 +20203,848 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [126] = { - [sym_identifier] = ACTIONS(1124), - [aux_sym_preproc_include_token1] = ACTIONS(1124), - [aux_sym_preproc_def_token1] = ACTIONS(1124), - [aux_sym_preproc_if_token1] = ACTIONS(1124), - [aux_sym_preproc_if_token2] = ACTIONS(1124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), - [aux_sym_preproc_else_token1] = ACTIONS(1124), - [aux_sym_preproc_elif_token1] = ACTIONS(1124), - [sym_preproc_directive] = ACTIONS(1124), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_typedef] = ACTIONS(1124), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym___attribute__] = ACTIONS(1124), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(1124), - [anon_sym___cdecl] = ACTIONS(1124), - [anon_sym___clrcall] = ACTIONS(1124), - [anon_sym___stdcall] = ACTIONS(1124), - [anon_sym___fastcall] = ACTIONS(1124), - [anon_sym___thiscall] = ACTIONS(1124), - [anon_sym___vectorcall] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_auto] = ACTIONS(1124), - [anon_sym_register] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_volatile] = ACTIONS(1124), - [anon_sym_restrict] = ACTIONS(1124), - [anon_sym__Atomic] = ACTIONS(1124), - [anon_sym_signed] = ACTIONS(1124), - [anon_sym_unsigned] = ACTIONS(1124), - [anon_sym_long] = ACTIONS(1124), - [anon_sym_short] = ACTIONS(1124), - [sym_primitive_type] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_struct] = ACTIONS(1124), - [anon_sym_union] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_switch] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1124), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_goto] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_sizeof] = ACTIONS(1124), - [sym_number_literal] = ACTIONS(1126), - [anon_sym_L_SQUOTE] = ACTIONS(1126), - [anon_sym_u_SQUOTE] = ACTIONS(1126), - [anon_sym_U_SQUOTE] = ACTIONS(1126), - [anon_sym_u8_SQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_L_DQUOTE] = ACTIONS(1126), - [anon_sym_u_DQUOTE] = ACTIONS(1126), - [anon_sym_U_DQUOTE] = ACTIONS(1126), - [anon_sym_u8_DQUOTE] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [sym_true] = ACTIONS(1124), - [sym_false] = ACTIONS(1124), - [sym_null] = ACTIONS(1124), + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, [127] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_if_token2] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, [128] = { - [ts_builtin_sym_end] = ACTIONS(896), - [sym_identifier] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(894), - [sym_preproc_directive] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(896), - [anon_sym___declspec] = ACTIONS(894), - [anon_sym___cdecl] = ACTIONS(894), - [anon_sym___clrcall] = ACTIONS(894), - [anon_sym___stdcall] = ACTIONS(894), - [anon_sym___fastcall] = ACTIONS(894), - [anon_sym___thiscall] = ACTIONS(894), - [anon_sym___vectorcall] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(894), - [anon_sym_restrict] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(894), - [anon_sym_signed] = ACTIONS(894), - [anon_sym_unsigned] = ACTIONS(894), - [anon_sym_long] = ACTIONS(894), - [anon_sym_short] = ACTIONS(894), - [sym_primitive_type] = ACTIONS(894), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(894), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(894), - [anon_sym_else] = ACTIONS(894), - [anon_sym_switch] = ACTIONS(894), - [anon_sym_case] = ACTIONS(894), - [anon_sym_default] = ACTIONS(894), - [anon_sym_while] = ACTIONS(894), - [anon_sym_do] = ACTIONS(894), - [anon_sym_for] = ACTIONS(894), - [anon_sym_return] = ACTIONS(894), - [anon_sym_break] = ACTIONS(894), - [anon_sym_continue] = ACTIONS(894), - [anon_sym_goto] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(894), - [sym_number_literal] = ACTIONS(896), - [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(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), - [sym_null] = ACTIONS(894), + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(1405), + [sym_attributed_statement] = STATE(1405), + [sym_labeled_statement] = STATE(1405), + [sym_expression_statement] = STATE(1405), + [sym_if_statement] = STATE(1405), + [sym_switch_statement] = STATE(1405), + [sym_case_statement] = STATE(1405), + [sym_while_statement] = STATE(1405), + [sym_do_statement] = STATE(1405), + [sym_for_statement] = STATE(1405), + [sym_return_statement] = STATE(1405), + [sym_break_statement] = STATE(1405), + [sym_continue_statement] = STATE(1405), + [sym_goto_statement] = STATE(1405), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [129] = { - [ts_builtin_sym_end] = ACTIONS(982), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [130] = { - [ts_builtin_sym_end] = ACTIONS(974), - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), [sym_comment] = ACTIONS(3), }, [131] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_if_token2] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [sym_identifier] = ACTIONS(916), + [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), + [anon_sym_LPAREN2] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_typedef] = ACTIONS(916), + [anon_sym_extern] = ACTIONS(916), + [anon_sym___attribute__] = ACTIONS(916), + [anon_sym_LBRACK_LBRACK] = ACTIONS(918), + [anon_sym___declspec] = ACTIONS(916), + [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(918), + [anon_sym_RBRACE] = ACTIONS(918), + [anon_sym_static] = ACTIONS(916), + [anon_sym_auto] = ACTIONS(916), + [anon_sym_register] = ACTIONS(916), + [anon_sym_inline] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym_signed] = ACTIONS(916), + [anon_sym_unsigned] = ACTIONS(916), + [anon_sym_long] = ACTIONS(916), + [anon_sym_short] = ACTIONS(916), + [sym_primitive_type] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_struct] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(916), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(916), + [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_sizeof] = ACTIONS(916), + [sym_number_literal] = ACTIONS(918), + [anon_sym_L_SQUOTE] = ACTIONS(918), + [anon_sym_u_SQUOTE] = ACTIONS(918), + [anon_sym_U_SQUOTE] = ACTIONS(918), + [anon_sym_u8_SQUOTE] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(918), + [anon_sym_L_DQUOTE] = ACTIONS(918), + [anon_sym_u_DQUOTE] = ACTIONS(918), + [anon_sym_U_DQUOTE] = ACTIONS(918), + [anon_sym_u8_DQUOTE] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_null] = ACTIONS(916), [sym_comment] = ACTIONS(3), }, [132] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_if_token2] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [sym_identifier] = ACTIONS(912), + [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), + [anon_sym_LPAREN2] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_typedef] = ACTIONS(912), + [anon_sym_extern] = ACTIONS(912), + [anon_sym___attribute__] = ACTIONS(912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(912), + [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(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_static] = ACTIONS(912), + [anon_sym_auto] = ACTIONS(912), + [anon_sym_register] = ACTIONS(912), + [anon_sym_inline] = ACTIONS(912), + [anon_sym_const] = ACTIONS(912), + [anon_sym_volatile] = ACTIONS(912), + [anon_sym_restrict] = ACTIONS(912), + [anon_sym__Atomic] = ACTIONS(912), + [anon_sym_signed] = ACTIONS(912), + [anon_sym_unsigned] = ACTIONS(912), + [anon_sym_long] = ACTIONS(912), + [anon_sym_short] = ACTIONS(912), + [sym_primitive_type] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_struct] = ACTIONS(912), + [anon_sym_union] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_do] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_goto] = ACTIONS(912), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_sizeof] = ACTIONS(912), + [sym_number_literal] = ACTIONS(914), + [anon_sym_L_SQUOTE] = ACTIONS(914), + [anon_sym_u_SQUOTE] = ACTIONS(914), + [anon_sym_U_SQUOTE] = ACTIONS(914), + [anon_sym_u8_SQUOTE] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(914), + [anon_sym_L_DQUOTE] = ACTIONS(914), + [anon_sym_u_DQUOTE] = ACTIONS(914), + [anon_sym_U_DQUOTE] = ACTIONS(914), + [anon_sym_u8_DQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [sym_null] = ACTIONS(912), + [sym_comment] = ACTIONS(3), + }, + [133] = { + [sym_attribute_declaration] = STATE(139), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [134] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(1442), + [sym_attributed_statement] = STATE(1442), + [sym_labeled_statement] = STATE(1442), + [sym_expression_statement] = STATE(1442), + [sym_if_statement] = STATE(1442), + [sym_switch_statement] = STATE(1442), + [sym_case_statement] = STATE(1442), + [sym_while_statement] = STATE(1442), + [sym_do_statement] = STATE(1442), + [sym_for_statement] = STATE(1442), + [sym_return_statement] = STATE(1442), + [sym_break_statement] = STATE(1442), + [sym_continue_statement] = STATE(1442), + [sym_goto_statement] = STATE(1442), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [135] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(268), + [sym_attributed_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [136] = { + [sym_identifier] = ACTIONS(904), + [aux_sym_preproc_include_token1] = ACTIONS(904), + [aux_sym_preproc_def_token1] = ACTIONS(904), + [aux_sym_preproc_if_token1] = ACTIONS(904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(904), + [sym_preproc_directive] = ACTIONS(904), + [anon_sym_LPAREN2] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_typedef] = ACTIONS(904), + [anon_sym_extern] = ACTIONS(904), + [anon_sym___attribute__] = ACTIONS(904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(906), + [anon_sym___declspec] = ACTIONS(904), + [anon_sym___cdecl] = ACTIONS(904), + [anon_sym___clrcall] = ACTIONS(904), + [anon_sym___stdcall] = ACTIONS(904), + [anon_sym___fastcall] = ACTIONS(904), + [anon_sym___thiscall] = ACTIONS(904), + [anon_sym___vectorcall] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [anon_sym_static] = ACTIONS(904), + [anon_sym_auto] = ACTIONS(904), + [anon_sym_register] = ACTIONS(904), + [anon_sym_inline] = ACTIONS(904), + [anon_sym_const] = ACTIONS(904), + [anon_sym_volatile] = ACTIONS(904), + [anon_sym_restrict] = ACTIONS(904), + [anon_sym__Atomic] = ACTIONS(904), + [anon_sym_signed] = ACTIONS(904), + [anon_sym_unsigned] = ACTIONS(904), + [anon_sym_long] = ACTIONS(904), + [anon_sym_short] = ACTIONS(904), + [sym_primitive_type] = ACTIONS(904), + [anon_sym_enum] = ACTIONS(904), + [anon_sym_struct] = ACTIONS(904), + [anon_sym_union] = ACTIONS(904), + [anon_sym_if] = ACTIONS(904), + [anon_sym_else] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(904), + [anon_sym_case] = ACTIONS(904), + [anon_sym_default] = ACTIONS(904), + [anon_sym_while] = ACTIONS(904), + [anon_sym_do] = ACTIONS(904), + [anon_sym_for] = ACTIONS(904), + [anon_sym_return] = ACTIONS(904), + [anon_sym_break] = ACTIONS(904), + [anon_sym_continue] = ACTIONS(904), + [anon_sym_goto] = ACTIONS(904), + [anon_sym_DASH_DASH] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_sizeof] = ACTIONS(904), + [sym_number_literal] = ACTIONS(906), + [anon_sym_L_SQUOTE] = ACTIONS(906), + [anon_sym_u_SQUOTE] = ACTIONS(906), + [anon_sym_U_SQUOTE] = ACTIONS(906), + [anon_sym_u8_SQUOTE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_L_DQUOTE] = ACTIONS(906), + [anon_sym_u_DQUOTE] = ACTIONS(906), + [anon_sym_U_DQUOTE] = ACTIONS(906), + [anon_sym_u8_DQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(906), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [sym_null] = ACTIONS(904), + [sym_comment] = ACTIONS(3), + }, + [137] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), [aux_sym_preproc_ifdef_token2] = ACTIONS(976), [sym_preproc_directive] = ACTIONS(976), [anon_sym_LPAREN2] = ACTIONS(978), @@ -20747,691 +21114,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, - [133] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_if_token2] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - }, - [134] = { - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - }, - [135] = { - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), + [138] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [136] = { - [ts_builtin_sym_end] = ACTIONS(916), - [sym_identifier] = ACTIONS(914), - [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), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [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(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - }, - [137] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token2] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_comment] = ACTIONS(3), - }, - [138] = { - [ts_builtin_sym_end] = ACTIONS(990), - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), - [sym_comment] = ACTIONS(3), - }, - [139] = { - [ts_builtin_sym_end] = ACTIONS(994), - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [139] = { + [sym_attribute_declaration] = STATE(241), + [sym_compound_statement] = STATE(240), + [sym_attributed_statement] = STATE(240), + [sym_labeled_statement] = STATE(240), + [sym_expression_statement] = STATE(240), + [sym_if_statement] = STATE(240), + [sym_switch_statement] = STATE(240), + [sym_case_statement] = STATE(240), + [sym_while_statement] = STATE(240), + [sym_do_statement] = STATE(240), + [sym_for_statement] = STATE(240), + [sym_return_statement] = STATE(240), + [sym_break_statement] = STATE(240), + [sym_continue_statement] = STATE(240), + [sym_goto_statement] = STATE(240), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [140] = { - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [141] = { - [sym_identifier] = ACTIONS(914), - [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), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [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(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - }, - [142] = { [ts_builtin_sym_end] = ACTIONS(946), [sym_identifier] = ACTIONS(944), [aux_sym_preproc_include_token1] = ACTIONS(944), @@ -21507,1071 +21342,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [143] = { - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(946), - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [141] = { + [sym_attribute_declaration] = STATE(139), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [145] = { - [ts_builtin_sym_end] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [142] = { + [sym_identifier] = ACTIONS(900), + [aux_sym_preproc_include_token1] = ACTIONS(900), + [aux_sym_preproc_def_token1] = ACTIONS(900), + [aux_sym_preproc_if_token1] = ACTIONS(900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(900), + [sym_preproc_directive] = ACTIONS(900), + [anon_sym_LPAREN2] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_typedef] = ACTIONS(900), + [anon_sym_extern] = ACTIONS(900), + [anon_sym___attribute__] = ACTIONS(900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(902), + [anon_sym___declspec] = ACTIONS(900), + [anon_sym___cdecl] = ACTIONS(900), + [anon_sym___clrcall] = ACTIONS(900), + [anon_sym___stdcall] = ACTIONS(900), + [anon_sym___fastcall] = ACTIONS(900), + [anon_sym___thiscall] = ACTIONS(900), + [anon_sym___vectorcall] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_static] = ACTIONS(900), + [anon_sym_auto] = ACTIONS(900), + [anon_sym_register] = ACTIONS(900), + [anon_sym_inline] = ACTIONS(900), + [anon_sym_const] = ACTIONS(900), + [anon_sym_volatile] = ACTIONS(900), + [anon_sym_restrict] = ACTIONS(900), + [anon_sym__Atomic] = ACTIONS(900), + [anon_sym_signed] = ACTIONS(900), + [anon_sym_unsigned] = ACTIONS(900), + [anon_sym_long] = ACTIONS(900), + [anon_sym_short] = ACTIONS(900), + [sym_primitive_type] = ACTIONS(900), + [anon_sym_enum] = ACTIONS(900), + [anon_sym_struct] = ACTIONS(900), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(900), + [anon_sym_else] = ACTIONS(900), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_case] = ACTIONS(900), + [anon_sym_default] = ACTIONS(900), + [anon_sym_while] = ACTIONS(900), + [anon_sym_do] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_return] = ACTIONS(900), + [anon_sym_break] = ACTIONS(900), + [anon_sym_continue] = ACTIONS(900), + [anon_sym_goto] = ACTIONS(900), + [anon_sym_DASH_DASH] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_sizeof] = ACTIONS(900), + [sym_number_literal] = ACTIONS(902), + [anon_sym_L_SQUOTE] = ACTIONS(902), + [anon_sym_u_SQUOTE] = ACTIONS(902), + [anon_sym_U_SQUOTE] = ACTIONS(902), + [anon_sym_u8_SQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_L_DQUOTE] = ACTIONS(902), + [anon_sym_u_DQUOTE] = ACTIONS(902), + [anon_sym_U_DQUOTE] = ACTIONS(902), + [anon_sym_u8_DQUOTE] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(902), + [sym_true] = ACTIONS(900), + [sym_false] = ACTIONS(900), + [sym_null] = ACTIONS(900), [sym_comment] = ACTIONS(3), }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(1022), - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [ts_builtin_sym_end] = ACTIONS(1026), - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [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(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [149] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(938), - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [sym_identifier] = ACTIONS(918), - [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), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [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(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), - [sym_comment] = ACTIONS(3), - }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [155] = { - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_if_token2] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [156] = { - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_if_token2] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [sym_comment] = ACTIONS(3), - }, - [157] = { + [143] = { [ts_builtin_sym_end] = ACTIONS(962), [sym_identifier] = ACTIONS(960), [aux_sym_preproc_include_token1] = ACTIONS(960), @@ -22647,463 +21570,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [158] = { - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [159] = { - [sym_identifier] = ACTIONS(914), - [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), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [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(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - }, - [160] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_comment] = ACTIONS(3), - }, - [161] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_if_token2] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), + [144] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(196), + [sym_attributed_statement] = STATE(196), + [sym_labeled_statement] = STATE(196), + [sym_expression_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_switch_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_do_statement] = STATE(196), + [sym_for_statement] = STATE(196), + [sym_return_statement] = STATE(196), + [sym_break_statement] = STATE(196), + [sym_continue_statement] = STATE(196), + [sym_goto_statement] = STATE(196), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [163] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), + [145] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(143), + [sym_attributed_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_case_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [164] = { + [146] = { + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [ts_builtin_sym_end] = ACTIONS(970), [sym_identifier] = ACTIONS(968), [aux_sym_preproc_include_token1] = ACTIONS(968), [aux_sym_preproc_def_token1] = ACTIONS(968), @@ -23131,7 +21827,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(968), [anon_sym___vectorcall] = ACTIONS(968), [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), [anon_sym_static] = ACTIONS(968), [anon_sym_auto] = ACTIONS(968), [anon_sym_register] = ACTIONS(968), @@ -23179,539 +21874,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_if_token2] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [166] = { - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_if_token2] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(918), - [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), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [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(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(1130), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [148] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(181), + [sym_attributed_statement] = STATE(181), + [sym_labeled_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [sym_if_statement] = STATE(181), + [sym_switch_statement] = STATE(181), + [sym_case_statement] = STATE(181), + [sym_while_statement] = STATE(181), + [sym_do_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym_return_statement] = STATE(181), + [sym_break_statement] = STATE(181), + [sym_continue_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [171] = { - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_if_token2] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), + [149] = { + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [172] = { + [150] = { + [ts_builtin_sym_end] = ACTIONS(954), [sym_identifier] = ACTIONS(952), [aux_sym_preproc_include_token1] = ACTIONS(952), [aux_sym_preproc_def_token1] = ACTIONS(952), @@ -23739,7 +22055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(952), [anon_sym___vectorcall] = ACTIONS(952), [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), [anon_sym_static] = ACTIONS(952), [anon_sym_auto] = ACTIONS(952), [anon_sym_register] = ACTIONS(952), @@ -23787,843 +22102,691 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(970), - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [151] = { + [sym_attribute_declaration] = STATE(151), + [sym_compound_statement] = STATE(150), + [sym_attributed_statement] = STATE(150), + [sym_labeled_statement] = STATE(150), + [sym_expression_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_switch_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_while_statement] = STATE(150), + [sym_do_statement] = STATE(150), + [sym_for_statement] = STATE(150), + [sym_return_statement] = STATE(150), + [sym_break_statement] = STATE(150), + [sym_continue_statement] = STATE(150), + [sym_goto_statement] = STATE(150), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1192), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(978), - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), + [152] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [177] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), + [153] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(178), + [sym_attributed_statement] = STATE(178), + [sym_labeled_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_do_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym_return_statement] = STATE(178), + [sym_break_statement] = STATE(178), + [sym_continue_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [178] = { - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_if_token2] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), + [154] = { + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), + [155] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [180] = { - [ts_builtin_sym_end] = ACTIONS(998), - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), + [156] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token2] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [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(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), + [157] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(258), + [sym_attributed_statement] = STATE(258), + [sym_labeled_statement] = STATE(258), + [sym_expression_statement] = STATE(258), + [sym_if_statement] = STATE(258), + [sym_switch_statement] = STATE(258), + [sym_case_statement] = STATE(258), + [sym_while_statement] = STATE(258), + [sym_do_statement] = STATE(258), + [sym_for_statement] = STATE(258), + [sym_return_statement] = STATE(258), + [sym_break_statement] = STATE(258), + [sym_continue_statement] = STATE(258), + [sym_goto_statement] = STATE(258), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [182] = { - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), + [158] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(177), + [sym_attributed_statement] = STATE(177), + [sym_labeled_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym_if_statement] = STATE(177), + [sym_switch_statement] = STATE(177), + [sym_case_statement] = STATE(177), + [sym_while_statement] = STATE(177), + [sym_do_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym_return_statement] = STATE(177), + [sym_break_statement] = STATE(177), + [sym_continue_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [183] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), + [159] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [184] = { + [160] = { [sym_identifier] = ACTIONS(1016), [aux_sym_preproc_include_token1] = ACTIONS(1016), [aux_sym_preproc_def_token1] = ACTIONS(1016), @@ -24699,695 +22862,1456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), + [161] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [162] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(152), + [sym_attributed_statement] = STATE(152), + [sym_labeled_statement] = STATE(152), + [sym_expression_statement] = STATE(152), + [sym_if_statement] = STATE(152), + [sym_switch_statement] = STATE(152), + [sym_case_statement] = STATE(152), + [sym_while_statement] = STATE(152), + [sym_do_statement] = STATE(152), + [sym_for_statement] = STATE(152), + [sym_return_statement] = STATE(152), + [sym_break_statement] = STATE(152), + [sym_continue_statement] = STATE(152), + [sym_goto_statement] = STATE(152), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [163] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [164] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(156), + [sym_attributed_statement] = STATE(156), + [sym_labeled_statement] = STATE(156), + [sym_expression_statement] = STATE(156), + [sym_if_statement] = STATE(156), + [sym_switch_statement] = STATE(156), + [sym_case_statement] = STATE(156), + [sym_while_statement] = STATE(156), + [sym_do_statement] = STATE(156), + [sym_for_statement] = STATE(156), + [sym_return_statement] = STATE(156), + [sym_break_statement] = STATE(156), + [sym_continue_statement] = STATE(156), + [sym_goto_statement] = STATE(156), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [165] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token2] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [166] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(182), + [sym_attributed_statement] = STATE(182), + [sym_labeled_statement] = STATE(182), + [sym_expression_statement] = STATE(182), + [sym_if_statement] = STATE(182), + [sym_switch_statement] = STATE(182), + [sym_case_statement] = STATE(182), + [sym_while_statement] = STATE(182), + [sym_do_statement] = STATE(182), + [sym_for_statement] = STATE(182), + [sym_return_statement] = STATE(182), + [sym_break_statement] = STATE(182), + [sym_continue_statement] = STATE(182), + [sym_goto_statement] = STATE(182), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [167] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_if_token2] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), + [168] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(160), + [sym_attributed_statement] = STATE(160), + [sym_labeled_statement] = STATE(160), + [sym_expression_statement] = STATE(160), + [sym_if_statement] = STATE(160), + [sym_switch_statement] = STATE(160), + [sym_case_statement] = STATE(160), + [sym_while_statement] = STATE(160), + [sym_do_statement] = STATE(160), + [sym_for_statement] = STATE(160), + [sym_return_statement] = STATE(160), + [sym_break_statement] = STATE(160), + [sym_continue_statement] = STATE(160), + [sym_goto_statement] = STATE(160), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [188] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [169] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [189] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_if_token2] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), + [170] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [171] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [172] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(165), + [sym_attributed_statement] = STATE(165), + [sym_labeled_statement] = STATE(165), + [sym_expression_statement] = STATE(165), + [sym_if_statement] = STATE(165), + [sym_switch_statement] = STATE(165), + [sym_case_statement] = STATE(165), + [sym_while_statement] = STATE(165), + [sym_do_statement] = STATE(165), + [sym_for_statement] = STATE(165), + [sym_return_statement] = STATE(165), + [sym_break_statement] = STATE(165), + [sym_continue_statement] = STATE(165), + [sym_goto_statement] = STATE(165), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [190] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), + [173] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(169), + [sym_attributed_statement] = STATE(169), + [sym_labeled_statement] = STATE(169), + [sym_expression_statement] = STATE(169), + [sym_if_statement] = STATE(169), + [sym_switch_statement] = STATE(169), + [sym_case_statement] = STATE(169), + [sym_while_statement] = STATE(169), + [sym_do_statement] = STATE(169), + [sym_for_statement] = STATE(169), + [sym_return_statement] = STATE(169), + [sym_break_statement] = STATE(169), + [sym_continue_statement] = STATE(169), + [sym_goto_statement] = STATE(169), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [191] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_if_token2] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), + [174] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [192] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [175] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [176] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), + [178] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [194] = { + [179] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [180] = { [sym_identifier] = ACTIONS(972), [aux_sym_preproc_include_token1] = ACTIONS(972), [aux_sym_preproc_def_token1] = ACTIONS(972), [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), [aux_sym_preproc_ifdef_token1] = ACTIONS(972), [aux_sym_preproc_ifdef_token2] = ACTIONS(972), [sym_preproc_directive] = ACTIONS(972), @@ -25411,7 +24335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(972), [anon_sym___vectorcall] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), [anon_sym_static] = ACTIONS(972), [anon_sym_auto] = ACTIONS(972), [anon_sym_register] = ACTIONS(972), @@ -25459,463 +24382,691 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), + [181] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [182] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), + [183] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(184), + [sym_attributed_statement] = STATE(184), + [sym_labeled_statement] = STATE(184), + [sym_expression_statement] = STATE(184), + [sym_if_statement] = STATE(184), + [sym_switch_statement] = STATE(184), + [sym_case_statement] = STATE(184), + [sym_while_statement] = STATE(184), + [sym_do_statement] = STATE(184), + [sym_for_statement] = STATE(184), + [sym_return_statement] = STATE(184), + [sym_break_statement] = STATE(184), + [sym_continue_statement] = STATE(184), + [sym_goto_statement] = STATE(184), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [197] = { - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), + [184] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [185] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(84), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_case_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [199] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), + [186] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(68), + [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_case_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__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [187] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(146), + [sym_attributed_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_case_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [200] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [188] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(147), + [sym_attributed_statement] = STATE(147), + [sym_labeled_statement] = STATE(147), + [sym_expression_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_switch_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_while_statement] = STATE(147), + [sym_do_statement] = STATE(147), + [sym_for_statement] = STATE(147), + [sym_return_statement] = STATE(147), + [sym_break_statement] = STATE(147), + [sym_continue_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [201] = { + [189] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(79), + [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_case_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__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [190] = { [ts_builtin_sym_end] = ACTIONS(1002), [sym_identifier] = ACTIONS(1000), [aux_sym_preproc_include_token1] = ACTIONS(1000), @@ -25991,159 +25142,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [202] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), + [191] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(149), + [sym_attributed_statement] = STATE(149), + [sym_labeled_statement] = STATE(149), + [sym_expression_statement] = STATE(149), + [sym_if_statement] = STATE(149), + [sym_switch_statement] = STATE(149), + [sym_case_statement] = STATE(149), + [sym_while_statement] = STATE(149), + [sym_do_statement] = STATE(149), + [sym_for_statement] = STATE(149), + [sym_return_statement] = STATE(149), + [sym_break_statement] = STATE(149), + [sym_continue_statement] = STATE(149), + [sym_goto_statement] = STATE(149), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [192] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(95), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_case_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [193] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [194] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [203] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), + [195] = { + [ts_builtin_sym_end] = ACTIONS(958), + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [204] = { + [196] = { [sym_identifier] = ACTIONS(964), [aux_sym_preproc_include_token1] = ACTIONS(964), [aux_sym_preproc_def_token1] = ACTIONS(964), @@ -26191,491 +25570,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(964), [anon_sym_else] = ACTIONS(964), [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_if_token2] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - }, - [206] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [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(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [207] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_if_token2] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(892), - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), + [197] = { + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [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(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), + [198] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(175), + [sym_attributed_statement] = STATE(175), + [sym_labeled_statement] = STATE(175), + [sym_expression_statement] = STATE(175), + [sym_if_statement] = STATE(175), + [sym_switch_statement] = STATE(175), + [sym_case_statement] = STATE(175), + [sym_while_statement] = STATE(175), + [sym_do_statement] = STATE(175), + [sym_for_statement] = STATE(175), + [sym_return_statement] = STATE(175), + [sym_break_statement] = STATE(175), + [sym_continue_statement] = STATE(175), + [sym_goto_statement] = STATE(175), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [211] = { + [199] = { + [ts_builtin_sym_end] = ACTIONS(942), [sym_identifier] = ACTIONS(940), [aux_sym_preproc_include_token1] = ACTIONS(940), [aux_sym_preproc_def_token1] = ACTIONS(940), @@ -26703,7 +25779,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(940), [anon_sym___vectorcall] = ACTIONS(940), [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), [anon_sym_static] = ACTIONS(940), [anon_sym_auto] = ACTIONS(940), [anon_sym_register] = ACTIONS(940), @@ -26751,539 +25826,843 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [212] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), + [200] = { + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_if_token2] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), [sym_comment] = ACTIONS(3), }, - [213] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [201] = { + [sym_attribute_declaration] = STATE(270), + [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__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [202] = { + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [214] = { - [sym_identifier] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(894), - [sym_preproc_directive] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(896), - [anon_sym___declspec] = ACTIONS(894), - [anon_sym___cdecl] = ACTIONS(894), - [anon_sym___clrcall] = ACTIONS(894), - [anon_sym___stdcall] = ACTIONS(894), - [anon_sym___fastcall] = ACTIONS(894), - [anon_sym___thiscall] = ACTIONS(894), - [anon_sym___vectorcall] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(894), - [anon_sym_restrict] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(894), - [anon_sym_signed] = ACTIONS(894), - [anon_sym_unsigned] = ACTIONS(894), - [anon_sym_long] = ACTIONS(894), - [anon_sym_short] = ACTIONS(894), - [sym_primitive_type] = ACTIONS(894), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(894), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(894), - [anon_sym_else] = ACTIONS(894), - [anon_sym_switch] = ACTIONS(894), - [anon_sym_case] = ACTIONS(894), - [anon_sym_default] = ACTIONS(894), - [anon_sym_while] = ACTIONS(894), - [anon_sym_do] = ACTIONS(894), - [anon_sym_for] = ACTIONS(894), - [anon_sym_return] = ACTIONS(894), - [anon_sym_break] = ACTIONS(894), - [anon_sym_continue] = ACTIONS(894), - [anon_sym_goto] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(894), - [sym_number_literal] = ACTIONS(896), - [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(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), - [sym_null] = ACTIONS(894), + [203] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(84), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_case_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1192), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [215] = { - [ts_builtin_sym_end] = ACTIONS(892), - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), + [204] = { + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [216] = { - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_if_token2] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), + [205] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [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(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [217] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_if_token2] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [206] = { + [sym_attribute_declaration] = STATE(139), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [207] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), + [208] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(161), + [sym_attributed_statement] = STATE(161), + [sym_labeled_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_if_statement] = STATE(161), + [sym_switch_statement] = STATE(161), + [sym_case_statement] = STATE(161), + [sym_while_statement] = STATE(161), + [sym_do_statement] = STATE(161), + [sym_for_statement] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_break_statement] = STATE(161), + [sym_continue_statement] = STATE(161), + [sym_goto_statement] = STATE(161), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [219] = { + [209] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_if_token2] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), + [sym_comment] = ACTIONS(3), + }, + [210] = { + [ts_builtin_sym_end] = ACTIONS(910), + [sym_identifier] = ACTIONS(908), + [aux_sym_preproc_include_token1] = ACTIONS(908), + [aux_sym_preproc_def_token1] = ACTIONS(908), + [aux_sym_preproc_if_token1] = ACTIONS(908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(908), + [sym_preproc_directive] = ACTIONS(908), + [anon_sym_LPAREN2] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_TILDE] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_typedef] = ACTIONS(908), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(910), + [anon_sym___declspec] = ACTIONS(908), + [anon_sym___cdecl] = ACTIONS(908), + [anon_sym___clrcall] = ACTIONS(908), + [anon_sym___stdcall] = ACTIONS(908), + [anon_sym___fastcall] = ACTIONS(908), + [anon_sym___thiscall] = ACTIONS(908), + [anon_sym___vectorcall] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym_const] = ACTIONS(908), + [anon_sym_volatile] = ACTIONS(908), + [anon_sym_restrict] = ACTIONS(908), + [anon_sym__Atomic] = ACTIONS(908), + [anon_sym_signed] = ACTIONS(908), + [anon_sym_unsigned] = ACTIONS(908), + [anon_sym_long] = ACTIONS(908), + [anon_sym_short] = ACTIONS(908), + [sym_primitive_type] = ACTIONS(908), + [anon_sym_enum] = ACTIONS(908), + [anon_sym_struct] = ACTIONS(908), + [anon_sym_union] = ACTIONS(908), + [anon_sym_if] = ACTIONS(908), + [anon_sym_else] = ACTIONS(908), + [anon_sym_switch] = ACTIONS(908), + [anon_sym_case] = ACTIONS(908), + [anon_sym_default] = ACTIONS(908), + [anon_sym_while] = ACTIONS(908), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(908), + [anon_sym_return] = ACTIONS(908), + [anon_sym_break] = ACTIONS(908), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_goto] = ACTIONS(908), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(908), + [sym_number_literal] = ACTIONS(910), + [anon_sym_L_SQUOTE] = ACTIONS(910), + [anon_sym_u_SQUOTE] = ACTIONS(910), + [anon_sym_U_SQUOTE] = ACTIONS(910), + [anon_sym_u8_SQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(910), + [anon_sym_L_DQUOTE] = ACTIONS(910), + [anon_sym_u_DQUOTE] = ACTIONS(910), + [anon_sym_U_DQUOTE] = ACTIONS(910), + [anon_sym_u8_DQUOTE] = ACTIONS(910), + [anon_sym_DQUOTE] = ACTIONS(910), + [sym_true] = ACTIONS(908), + [sym_false] = ACTIONS(908), + [sym_null] = ACTIONS(908), + [sym_comment] = ACTIONS(3), + }, + [211] = { [sym_identifier] = ACTIONS(1016), [aux_sym_preproc_include_token1] = ACTIONS(1016), [aux_sym_preproc_def_token1] = ACTIONS(1016), @@ -27359,83 +26738,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [220] = { - [sym_identifier] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(894), - [aux_sym_preproc_if_token2] = ACTIONS(894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(894), - [sym_preproc_directive] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(896), - [anon_sym___declspec] = ACTIONS(894), - [anon_sym___cdecl] = ACTIONS(894), - [anon_sym___clrcall] = ACTIONS(894), - [anon_sym___stdcall] = ACTIONS(894), - [anon_sym___fastcall] = ACTIONS(894), - [anon_sym___thiscall] = ACTIONS(894), - [anon_sym___vectorcall] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_static] = ACTIONS(894), - [anon_sym_auto] = ACTIONS(894), - [anon_sym_register] = ACTIONS(894), - [anon_sym_inline] = ACTIONS(894), - [anon_sym_const] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(894), - [anon_sym_restrict] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(894), - [anon_sym_signed] = ACTIONS(894), - [anon_sym_unsigned] = ACTIONS(894), - [anon_sym_long] = ACTIONS(894), - [anon_sym_short] = ACTIONS(894), - [sym_primitive_type] = ACTIONS(894), - [anon_sym_enum] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(894), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(894), - [anon_sym_else] = ACTIONS(894), - [anon_sym_switch] = ACTIONS(894), - [anon_sym_case] = ACTIONS(894), - [anon_sym_default] = ACTIONS(894), - [anon_sym_while] = ACTIONS(894), - [anon_sym_do] = ACTIONS(894), - [anon_sym_for] = ACTIONS(894), - [anon_sym_return] = ACTIONS(894), - [anon_sym_break] = ACTIONS(894), - [anon_sym_continue] = ACTIONS(894), - [anon_sym_goto] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(894), - [sym_number_literal] = ACTIONS(896), - [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(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), - [sym_null] = ACTIONS(894), + [212] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(155), + [sym_attributed_statement] = STATE(155), + [sym_labeled_statement] = STATE(155), + [sym_expression_statement] = STATE(155), + [sym_if_statement] = STATE(155), + [sym_switch_statement] = STATE(155), + [sym_case_statement] = STATE(155), + [sym_while_statement] = STATE(155), + [sym_do_statement] = STATE(155), + [sym_for_statement] = STATE(155), + [sym_return_statement] = STATE(155), + [sym_break_statement] = STATE(155), + [sym_continue_statement] = STATE(155), + [sym_goto_statement] = STATE(155), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [221] = { + [213] = { [sym_identifier] = ACTIONS(948), [aux_sym_preproc_include_token1] = ACTIONS(948), [aux_sym_preproc_def_token1] = ACTIONS(948), @@ -27490,712 +26869,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(948), [anon_sym_return] = ACTIONS(948), [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token2] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(912), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [ts_builtin_sym_end] = ACTIONS(908), - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(904), - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(918), - [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), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [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(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(1132), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token2] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [214] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token2] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), + [215] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [231] = { + [216] = { [sym_identifier] = ACTIONS(932), [aux_sym_preproc_include_token1] = ACTIONS(932), [aux_sym_preproc_def_token1] = ACTIONS(932), @@ -28271,164 +27118,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token2] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [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(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(900), - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [sym_comment] = ACTIONS(3), - }, - [234] = { + [217] = { + [ts_builtin_sym_end] = ACTIONS(1022), [sym_identifier] = ACTIONS(1020), [aux_sym_preproc_include_token1] = ACTIONS(1020), [aux_sym_preproc_def_token1] = ACTIONS(1020), [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token2] = ACTIONS(1020), [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), [sym_preproc_directive] = ACTIONS(1020), @@ -28499,566 +27194,650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [235] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token2] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), + [218] = { + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_if_token2] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(1120), - [aux_sym_preproc_include_token1] = ACTIONS(1120), - [aux_sym_preproc_def_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token2] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), - [sym_preproc_directive] = ACTIONS(1120), - [anon_sym_LPAREN2] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym___attribute__] = ACTIONS(1120), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), - [anon_sym___declspec] = ACTIONS(1120), - [anon_sym___cdecl] = ACTIONS(1120), - [anon_sym___clrcall] = ACTIONS(1120), - [anon_sym___stdcall] = ACTIONS(1120), - [anon_sym___fastcall] = ACTIONS(1120), - [anon_sym___thiscall] = ACTIONS(1120), - [anon_sym___vectorcall] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_volatile] = ACTIONS(1120), - [anon_sym_restrict] = ACTIONS(1120), - [anon_sym__Atomic] = ACTIONS(1120), - [anon_sym_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [sym_primitive_type] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_goto] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_L_SQUOTE] = ACTIONS(1122), - [anon_sym_u_SQUOTE] = ACTIONS(1122), - [anon_sym_U_SQUOTE] = ACTIONS(1122), - [anon_sym_u8_SQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_L_DQUOTE] = ACTIONS(1122), - [anon_sym_u_DQUOTE] = ACTIONS(1122), - [anon_sym_U_DQUOTE] = ACTIONS(1122), - [anon_sym_u8_DQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), + [219] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), + [220] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(204), + [sym_attributed_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_switch_statement] = STATE(204), + [sym_case_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_goto_statement] = STATE(204), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [238] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token2] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [221] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(205), + [sym_attributed_statement] = STATE(205), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1126), - [sym_identifier] = ACTIONS(1124), - [aux_sym_preproc_include_token1] = ACTIONS(1124), - [aux_sym_preproc_def_token1] = ACTIONS(1124), - [aux_sym_preproc_if_token1] = ACTIONS(1124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), - [sym_preproc_directive] = ACTIONS(1124), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_typedef] = ACTIONS(1124), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym___attribute__] = ACTIONS(1124), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(1124), - [anon_sym___cdecl] = ACTIONS(1124), - [anon_sym___clrcall] = ACTIONS(1124), - [anon_sym___stdcall] = ACTIONS(1124), - [anon_sym___fastcall] = ACTIONS(1124), - [anon_sym___thiscall] = ACTIONS(1124), - [anon_sym___vectorcall] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_auto] = ACTIONS(1124), - [anon_sym_register] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_volatile] = ACTIONS(1124), - [anon_sym_restrict] = ACTIONS(1124), - [anon_sym__Atomic] = ACTIONS(1124), - [anon_sym_signed] = ACTIONS(1124), - [anon_sym_unsigned] = ACTIONS(1124), - [anon_sym_long] = ACTIONS(1124), - [anon_sym_short] = ACTIONS(1124), - [sym_primitive_type] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_struct] = ACTIONS(1124), - [anon_sym_union] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_switch] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1124), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_goto] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_sizeof] = ACTIONS(1124), - [sym_number_literal] = ACTIONS(1126), - [anon_sym_L_SQUOTE] = ACTIONS(1126), - [anon_sym_u_SQUOTE] = ACTIONS(1126), - [anon_sym_U_SQUOTE] = ACTIONS(1126), - [anon_sym_u8_SQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_L_DQUOTE] = ACTIONS(1126), - [anon_sym_u_DQUOTE] = ACTIONS(1126), - [anon_sym_U_DQUOTE] = ACTIONS(1126), - [anon_sym_u8_DQUOTE] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [sym_true] = ACTIONS(1124), - [sym_false] = ACTIONS(1124), - [sym_null] = ACTIONS(1124), + [222] = { + [sym_identifier] = ACTIONS(896), + [aux_sym_preproc_include_token1] = ACTIONS(896), + [aux_sym_preproc_def_token1] = ACTIONS(896), + [aux_sym_preproc_if_token1] = ACTIONS(896), + [aux_sym_preproc_if_token2] = ACTIONS(896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(896), + [sym_preproc_directive] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_TILDE] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_typedef] = ACTIONS(896), + [anon_sym_extern] = ACTIONS(896), + [anon_sym___attribute__] = ACTIONS(896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(898), + [anon_sym___declspec] = ACTIONS(896), + [anon_sym___cdecl] = ACTIONS(896), + [anon_sym___clrcall] = ACTIONS(896), + [anon_sym___stdcall] = ACTIONS(896), + [anon_sym___fastcall] = ACTIONS(896), + [anon_sym___thiscall] = ACTIONS(896), + [anon_sym___vectorcall] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_static] = ACTIONS(896), + [anon_sym_auto] = ACTIONS(896), + [anon_sym_register] = ACTIONS(896), + [anon_sym_inline] = ACTIONS(896), + [anon_sym_const] = ACTIONS(896), + [anon_sym_volatile] = ACTIONS(896), + [anon_sym_restrict] = ACTIONS(896), + [anon_sym__Atomic] = ACTIONS(896), + [anon_sym_signed] = ACTIONS(896), + [anon_sym_unsigned] = ACTIONS(896), + [anon_sym_long] = ACTIONS(896), + [anon_sym_short] = ACTIONS(896), + [sym_primitive_type] = ACTIONS(896), + [anon_sym_enum] = ACTIONS(896), + [anon_sym_struct] = ACTIONS(896), + [anon_sym_union] = ACTIONS(896), + [anon_sym_if] = ACTIONS(896), + [anon_sym_else] = ACTIONS(896), + [anon_sym_switch] = ACTIONS(896), + [anon_sym_case] = ACTIONS(896), + [anon_sym_default] = ACTIONS(896), + [anon_sym_while] = ACTIONS(896), + [anon_sym_do] = ACTIONS(896), + [anon_sym_for] = ACTIONS(896), + [anon_sym_return] = ACTIONS(896), + [anon_sym_break] = ACTIONS(896), + [anon_sym_continue] = ACTIONS(896), + [anon_sym_goto] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_sizeof] = ACTIONS(896), + [sym_number_literal] = ACTIONS(898), + [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(898), + [anon_sym_u_DQUOTE] = ACTIONS(898), + [anon_sym_U_DQUOTE] = ACTIONS(898), + [anon_sym_u8_DQUOTE] = ACTIONS(898), + [anon_sym_DQUOTE] = ACTIONS(898), + [sym_true] = ACTIONS(896), + [sym_false] = ACTIONS(896), + [sym_null] = ACTIONS(896), [sym_comment] = ACTIONS(3), }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [223] = { + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_if_token2] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), + [224] = { + [sym_identifier] = ACTIONS(908), + [aux_sym_preproc_include_token1] = ACTIONS(908), + [aux_sym_preproc_def_token1] = ACTIONS(908), + [aux_sym_preproc_if_token1] = ACTIONS(908), + [aux_sym_preproc_if_token2] = ACTIONS(908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(908), + [sym_preproc_directive] = ACTIONS(908), + [anon_sym_LPAREN2] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_TILDE] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_typedef] = ACTIONS(908), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(910), + [anon_sym___declspec] = ACTIONS(908), + [anon_sym___cdecl] = ACTIONS(908), + [anon_sym___clrcall] = ACTIONS(908), + [anon_sym___stdcall] = ACTIONS(908), + [anon_sym___fastcall] = ACTIONS(908), + [anon_sym___thiscall] = ACTIONS(908), + [anon_sym___vectorcall] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym_const] = ACTIONS(908), + [anon_sym_volatile] = ACTIONS(908), + [anon_sym_restrict] = ACTIONS(908), + [anon_sym__Atomic] = ACTIONS(908), + [anon_sym_signed] = ACTIONS(908), + [anon_sym_unsigned] = ACTIONS(908), + [anon_sym_long] = ACTIONS(908), + [anon_sym_short] = ACTIONS(908), + [sym_primitive_type] = ACTIONS(908), + [anon_sym_enum] = ACTIONS(908), + [anon_sym_struct] = ACTIONS(908), + [anon_sym_union] = ACTIONS(908), + [anon_sym_if] = ACTIONS(908), + [anon_sym_else] = ACTIONS(908), + [anon_sym_switch] = ACTIONS(908), + [anon_sym_case] = ACTIONS(908), + [anon_sym_default] = ACTIONS(908), + [anon_sym_while] = ACTIONS(908), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(908), + [anon_sym_return] = ACTIONS(908), + [anon_sym_break] = ACTIONS(908), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_goto] = ACTIONS(908), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(908), + [sym_number_literal] = ACTIONS(910), + [anon_sym_L_SQUOTE] = ACTIONS(910), + [anon_sym_u_SQUOTE] = ACTIONS(910), + [anon_sym_U_SQUOTE] = ACTIONS(910), + [anon_sym_u8_SQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(910), + [anon_sym_L_DQUOTE] = ACTIONS(910), + [anon_sym_u_DQUOTE] = ACTIONS(910), + [anon_sym_U_DQUOTE] = ACTIONS(910), + [anon_sym_u8_DQUOTE] = ACTIONS(910), + [anon_sym_DQUOTE] = ACTIONS(910), + [sym_true] = ACTIONS(908), + [sym_false] = ACTIONS(908), + [sym_null] = ACTIONS(908), [sym_comment] = ACTIONS(3), }, - [242] = { - [sym_attribute_declaration] = STATE(613), - [sym_compound_statement] = STATE(254), - [sym_labeled_statement] = STATE(254), - [sym_expression_statement] = STATE(254), - [sym_if_statement] = STATE(254), - [sym_switch_statement] = STATE(254), - [sym_case_statement] = STATE(254), - [sym_while_statement] = STATE(254), - [sym_do_statement] = STATE(254), - [sym_for_statement] = STATE(254), - [sym_return_statement] = STATE(254), - [sym_break_statement] = STATE(254), - [sym_continue_statement] = STATE(254), - [sym_goto_statement] = STATE(254), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [aux_sym_attributed_declarator_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1134), + [225] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [226] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(207), + [sym_attributed_statement] = STATE(207), + [sym_labeled_statement] = STATE(207), + [sym_expression_statement] = STATE(207), + [sym_if_statement] = STATE(207), + [sym_switch_statement] = STATE(207), + [sym_case_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_do_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_return_statement] = STATE(207), + [sym_break_statement] = STATE(207), + [sym_continue_statement] = STATE(207), + [sym_goto_statement] = STATE(207), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29066,20 +27845,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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [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_SEMI] = ACTIONS(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29099,266 +27878,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [227] = { + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [228] = { + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(896), + [aux_sym_preproc_include_token1] = ACTIONS(896), + [aux_sym_preproc_def_token1] = ACTIONS(896), + [aux_sym_preproc_if_token1] = ACTIONS(896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(896), + [sym_preproc_directive] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_TILDE] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_typedef] = ACTIONS(896), + [anon_sym_extern] = ACTIONS(896), + [anon_sym___attribute__] = ACTIONS(896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(898), + [anon_sym___declspec] = ACTIONS(896), + [anon_sym___cdecl] = ACTIONS(896), + [anon_sym___clrcall] = ACTIONS(896), + [anon_sym___stdcall] = ACTIONS(896), + [anon_sym___fastcall] = ACTIONS(896), + [anon_sym___thiscall] = ACTIONS(896), + [anon_sym___vectorcall] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_static] = ACTIONS(896), + [anon_sym_auto] = ACTIONS(896), + [anon_sym_register] = ACTIONS(896), + [anon_sym_inline] = ACTIONS(896), + [anon_sym_const] = ACTIONS(896), + [anon_sym_volatile] = ACTIONS(896), + [anon_sym_restrict] = ACTIONS(896), + [anon_sym__Atomic] = ACTIONS(896), + [anon_sym_signed] = ACTIONS(896), + [anon_sym_unsigned] = ACTIONS(896), + [anon_sym_long] = ACTIONS(896), + [anon_sym_short] = ACTIONS(896), + [sym_primitive_type] = ACTIONS(896), + [anon_sym_enum] = ACTIONS(896), + [anon_sym_struct] = ACTIONS(896), + [anon_sym_union] = ACTIONS(896), + [anon_sym_if] = ACTIONS(896), + [anon_sym_else] = ACTIONS(896), + [anon_sym_switch] = ACTIONS(896), + [anon_sym_case] = ACTIONS(896), + [anon_sym_default] = ACTIONS(896), + [anon_sym_while] = ACTIONS(896), + [anon_sym_do] = ACTIONS(896), + [anon_sym_for] = ACTIONS(896), + [anon_sym_return] = ACTIONS(896), + [anon_sym_break] = ACTIONS(896), + [anon_sym_continue] = ACTIONS(896), + [anon_sym_goto] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_sizeof] = ACTIONS(896), + [sym_number_literal] = ACTIONS(898), + [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(898), + [anon_sym_u_DQUOTE] = ACTIONS(898), + [anon_sym_U_DQUOTE] = ACTIONS(898), + [anon_sym_u8_DQUOTE] = ACTIONS(898), + [anon_sym_DQUOTE] = ACTIONS(898), + [sym_true] = ACTIONS(896), + [sym_false] = ACTIONS(896), + [sym_null] = ACTIONS(896), [sym_comment] = ACTIONS(3), }, - [246] = { - [sym_attribute_declaration] = STATE(613), - [sym_compound_statement] = STATE(249), - [sym_labeled_statement] = STATE(249), - [sym_expression_statement] = STATE(249), - [sym_if_statement] = STATE(249), - [sym_switch_statement] = STATE(249), - [sym_case_statement] = STATE(249), - [sym_while_statement] = STATE(249), - [sym_do_statement] = STATE(249), - [sym_for_statement] = STATE(249), - [sym_return_statement] = STATE(249), - [sym_break_statement] = STATE(249), - [sym_continue_statement] = STATE(249), - [sym_goto_statement] = STATE(249), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [aux_sym_attributed_declarator_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1138), + [229] = { + [sym_attribute_declaration] = STATE(139), + [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__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29366,20 +28073,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(367), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29399,416 +28106,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_identifier] = ACTIONS(1120), - [aux_sym_preproc_include_token1] = ACTIONS(1120), - [aux_sym_preproc_def_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), - [sym_preproc_directive] = ACTIONS(1120), - [anon_sym_LPAREN2] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym___attribute__] = ACTIONS(1120), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), - [anon_sym___declspec] = ACTIONS(1120), - [anon_sym___cdecl] = ACTIONS(1120), - [anon_sym___clrcall] = ACTIONS(1120), - [anon_sym___stdcall] = ACTIONS(1120), - [anon_sym___fastcall] = ACTIONS(1120), - [anon_sym___thiscall] = ACTIONS(1120), - [anon_sym___vectorcall] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_volatile] = ACTIONS(1120), - [anon_sym_restrict] = ACTIONS(1120), - [anon_sym__Atomic] = ACTIONS(1120), - [anon_sym_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [sym_primitive_type] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_goto] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_L_SQUOTE] = ACTIONS(1122), - [anon_sym_u_SQUOTE] = ACTIONS(1122), - [anon_sym_U_SQUOTE] = ACTIONS(1122), - [anon_sym_u8_SQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_L_DQUOTE] = ACTIONS(1122), - [anon_sym_u_DQUOTE] = ACTIONS(1122), - [anon_sym_U_DQUOTE] = ACTIONS(1122), - [anon_sym_u8_DQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token2] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token2] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), - [sym_comment] = ACTIONS(3), - }, - [251] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - }, - [252] = { - [sym_attribute_declaration] = STATE(613), - [sym_compound_statement] = STATE(124), - [sym_labeled_statement] = STATE(124), - [sym_expression_statement] = STATE(124), - [sym_if_statement] = STATE(124), - [sym_switch_statement] = STATE(124), - [sym_case_statement] = STATE(124), - [sym_while_statement] = STATE(124), - [sym_do_statement] = STATE(124), - [sym_for_statement] = STATE(124), - [sym_return_statement] = STATE(124), - [sym_break_statement] = STATE(124), - [sym_continue_statement] = STATE(124), - [sym_goto_statement] = STATE(124), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [aux_sym_attributed_declarator_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1140), + [230] = { + [sym_attribute_declaration] = STATE(263), + [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__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29816,20 +28149,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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29849,566 +28182,878 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token2] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), + [231] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), + [232] = { + [ts_builtin_sym_end] = ACTIONS(938), + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [233] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [234] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + }, + [235] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token2] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), + [236] = { + [sym_attribute_declaration] = STATE(236), + [sym_compound_statement] = STATE(245), + [sym_attributed_statement] = STATE(245), + [sym_labeled_statement] = STATE(245), + [sym_expression_statement] = STATE(245), + [sym_if_statement] = STATE(245), + [sym_switch_statement] = STATE(245), + [sym_case_statement] = STATE(245), + [sym_while_statement] = STATE(245), + [sym_do_statement] = STATE(245), + [sym_for_statement] = STATE(245), + [sym_return_statement] = STATE(245), + [sym_break_statement] = STATE(245), + [sym_continue_statement] = STATE(245), + [sym_goto_statement] = STATE(245), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1192), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [258] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [237] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(1433), + [sym_attributed_statement] = STATE(1433), + [sym_labeled_statement] = STATE(1433), + [sym_expression_statement] = STATE(1433), + [sym_if_statement] = STATE(1433), + [sym_switch_statement] = STATE(1433), + [sym_case_statement] = STATE(1433), + [sym_while_statement] = STATE(1433), + [sym_do_statement] = STATE(1433), + [sym_for_statement] = STATE(1433), + [sym_return_statement] = STATE(1433), + [sym_break_statement] = STATE(1433), + [sym_continue_statement] = STATE(1433), + [sym_goto_statement] = STATE(1433), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [238] = { + [ts_builtin_sym_end] = ACTIONS(934), + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + }, + [239] = { + [ts_builtin_sym_end] = ACTIONS(930), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + }, + [240] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [260] = { - [sym_attribute_declaration] = STATE(613), - [sym_compound_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [aux_sym_attributed_declarator_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1142), + [241] = { + [sym_attribute_declaration] = STATE(241), + [sym_compound_statement] = STATE(240), + [sym_attributed_statement] = STATE(240), + [sym_labeled_statement] = STATE(240), + [sym_expression_statement] = STATE(240), + [sym_if_statement] = STATE(240), + [sym_switch_statement] = STATE(240), + [sym_case_statement] = STATE(240), + [sym_while_statement] = STATE(240), + [sym_do_statement] = STATE(240), + [sym_for_statement] = STATE(240), + [sym_return_statement] = STATE(240), + [sym_break_statement] = STATE(240), + [sym_continue_statement] = STATE(240), + [sym_goto_statement] = STATE(240), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(1297), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1309), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1192), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + }, + [242] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(225), + [sym_attributed_statement] = STATE(225), + [sym_labeled_statement] = STATE(225), + [sym_expression_statement] = STATE(225), + [sym_if_statement] = STATE(225), + [sym_switch_statement] = STATE(225), + [sym_case_statement] = STATE(225), + [sym_while_statement] = STATE(225), + [sym_do_statement] = STATE(225), + [sym_for_statement] = STATE(225), + [sym_return_statement] = STATE(225), + [sym_break_statement] = STATE(225), + [sym_continue_statement] = STATE(225), + [sym_goto_statement] = STATE(225), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30416,20 +29061,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(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -30449,3339 +29094,3994 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - }, - [262] = { - [sym_identifier] = ACTIONS(1124), - [aux_sym_preproc_include_token1] = ACTIONS(1124), - [aux_sym_preproc_def_token1] = ACTIONS(1124), - [aux_sym_preproc_if_token1] = ACTIONS(1124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), - [sym_preproc_directive] = ACTIONS(1124), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_typedef] = ACTIONS(1124), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym___attribute__] = ACTIONS(1124), + [243] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(231), + [sym_attributed_statement] = STATE(231), + [sym_labeled_statement] = STATE(231), + [sym_expression_statement] = STATE(231), + [sym_if_statement] = STATE(231), + [sym_switch_statement] = STATE(231), + [sym_case_statement] = STATE(231), + [sym_while_statement] = STATE(231), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(231), + [sym_return_statement] = STATE(231), + [sym_break_statement] = STATE(231), + [sym_continue_statement] = STATE(231), + [sym_goto_statement] = STATE(231), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(1124), - [anon_sym___cdecl] = ACTIONS(1124), - [anon_sym___clrcall] = ACTIONS(1124), - [anon_sym___stdcall] = ACTIONS(1124), - [anon_sym___fastcall] = ACTIONS(1124), - [anon_sym___thiscall] = ACTIONS(1124), - [anon_sym___vectorcall] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_auto] = ACTIONS(1124), - [anon_sym_register] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_volatile] = ACTIONS(1124), - [anon_sym_restrict] = ACTIONS(1124), - [anon_sym__Atomic] = ACTIONS(1124), - [anon_sym_signed] = ACTIONS(1124), - [anon_sym_unsigned] = ACTIONS(1124), - [anon_sym_long] = ACTIONS(1124), - [anon_sym_short] = ACTIONS(1124), - [sym_primitive_type] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_struct] = ACTIONS(1124), - [anon_sym_union] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_switch] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1124), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_goto] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_sizeof] = ACTIONS(1124), - [sym_number_literal] = ACTIONS(1126), - [anon_sym_L_SQUOTE] = ACTIONS(1126), - [anon_sym_u_SQUOTE] = ACTIONS(1126), - [anon_sym_U_SQUOTE] = ACTIONS(1126), - [anon_sym_u8_SQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_L_DQUOTE] = ACTIONS(1126), - [anon_sym_u_DQUOTE] = ACTIONS(1126), - [anon_sym_U_DQUOTE] = ACTIONS(1126), - [anon_sym_u8_DQUOTE] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [sym_true] = ACTIONS(1124), - [sym_false] = ACTIONS(1124), - [sym_null] = ACTIONS(1124), - [sym_comment] = ACTIONS(3), - }, - [263] = { - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token2] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [264] = { - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token2] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), + [244] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [245] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_identifier] = ACTIONS(1120), - [aux_sym_preproc_include_token1] = ACTIONS(1120), - [aux_sym_preproc_def_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), - [sym_preproc_directive] = ACTIONS(1120), - [anon_sym_LPAREN2] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym___attribute__] = ACTIONS(1120), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), - [anon_sym___declspec] = ACTIONS(1120), - [anon_sym___cdecl] = ACTIONS(1120), - [anon_sym___clrcall] = ACTIONS(1120), - [anon_sym___stdcall] = ACTIONS(1120), - [anon_sym___fastcall] = ACTIONS(1120), - [anon_sym___thiscall] = ACTIONS(1120), - [anon_sym___vectorcall] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_volatile] = ACTIONS(1120), - [anon_sym_restrict] = ACTIONS(1120), - [anon_sym__Atomic] = ACTIONS(1120), - [anon_sym_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [sym_primitive_type] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_goto] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_L_SQUOTE] = ACTIONS(1122), - [anon_sym_u_SQUOTE] = ACTIONS(1122), - [anon_sym_U_SQUOTE] = ACTIONS(1122), - [anon_sym_u8_SQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_L_DQUOTE] = ACTIONS(1122), - [anon_sym_u_DQUOTE] = ACTIONS(1122), - [anon_sym_U_DQUOTE] = ACTIONS(1122), - [anon_sym_u8_DQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), + [246] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token2] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [247] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(303), + [sym_attributed_statement] = STATE(303), + [sym_labeled_statement] = STATE(303), + [sym_expression_statement] = STATE(303), + [sym_if_statement] = STATE(303), + [sym_switch_statement] = STATE(303), + [sym_case_statement] = STATE(303), + [sym_while_statement] = STATE(303), + [sym_do_statement] = STATE(303), + [sym_for_statement] = STATE(303), + [sym_return_statement] = STATE(303), + [sym_break_statement] = STATE(303), + [sym_continue_statement] = STATE(303), + [sym_goto_statement] = STATE(303), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), + [248] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(246), + [sym_attributed_statement] = STATE(246), + [sym_labeled_statement] = STATE(246), + [sym_expression_statement] = STATE(246), + [sym_if_statement] = STATE(246), + [sym_switch_statement] = STATE(246), + [sym_case_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_return_statement] = STATE(246), + [sym_break_statement] = STATE(246), + [sym_continue_statement] = STATE(246), + [sym_goto_statement] = STATE(246), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [269] = { - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token2] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), + [249] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [270] = { - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [250] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [251] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(214), + [sym_attributed_statement] = STATE(214), + [sym_labeled_statement] = STATE(214), + [sym_expression_statement] = STATE(214), + [sym_if_statement] = STATE(214), + [sym_switch_statement] = STATE(214), + [sym_case_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_do_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_return_statement] = STATE(214), + [sym_break_statement] = STATE(214), + [sym_continue_statement] = STATE(214), + [sym_goto_statement] = STATE(214), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), + [252] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_if_token2] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [253] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token2] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), + [254] = { + [sym_identifier] = ACTIONS(916), + [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), + [anon_sym_LPAREN2] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_typedef] = ACTIONS(916), + [anon_sym_extern] = ACTIONS(916), + [anon_sym___attribute__] = ACTIONS(916), + [anon_sym_LBRACK_LBRACK] = ACTIONS(918), + [anon_sym___declspec] = ACTIONS(916), + [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(918), + [anon_sym_static] = ACTIONS(916), + [anon_sym_auto] = ACTIONS(916), + [anon_sym_register] = ACTIONS(916), + [anon_sym_inline] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym_signed] = ACTIONS(916), + [anon_sym_unsigned] = ACTIONS(916), + [anon_sym_long] = ACTIONS(916), + [anon_sym_short] = ACTIONS(916), + [sym_primitive_type] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_struct] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(916), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(916), + [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_sizeof] = ACTIONS(916), + [sym_number_literal] = ACTIONS(918), + [anon_sym_L_SQUOTE] = ACTIONS(918), + [anon_sym_u_SQUOTE] = ACTIONS(918), + [anon_sym_U_SQUOTE] = ACTIONS(918), + [anon_sym_u8_SQUOTE] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(918), + [anon_sym_L_DQUOTE] = ACTIONS(918), + [anon_sym_u_DQUOTE] = ACTIONS(918), + [anon_sym_U_DQUOTE] = ACTIONS(918), + [anon_sym_u8_DQUOTE] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_null] = ACTIONS(916), [sym_comment] = ACTIONS(3), }, - [274] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [255] = { + [sym_identifier] = ACTIONS(912), + [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), + [anon_sym_LPAREN2] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_typedef] = ACTIONS(912), + [anon_sym_extern] = ACTIONS(912), + [anon_sym___attribute__] = ACTIONS(912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(912), + [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(914), + [anon_sym_static] = ACTIONS(912), + [anon_sym_auto] = ACTIONS(912), + [anon_sym_register] = ACTIONS(912), + [anon_sym_inline] = ACTIONS(912), + [anon_sym_const] = ACTIONS(912), + [anon_sym_volatile] = ACTIONS(912), + [anon_sym_restrict] = ACTIONS(912), + [anon_sym__Atomic] = ACTIONS(912), + [anon_sym_signed] = ACTIONS(912), + [anon_sym_unsigned] = ACTIONS(912), + [anon_sym_long] = ACTIONS(912), + [anon_sym_short] = ACTIONS(912), + [sym_primitive_type] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_struct] = ACTIONS(912), + [anon_sym_union] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_do] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_goto] = ACTIONS(912), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_sizeof] = ACTIONS(912), + [sym_number_literal] = ACTIONS(914), + [anon_sym_L_SQUOTE] = ACTIONS(914), + [anon_sym_u_SQUOTE] = ACTIONS(914), + [anon_sym_U_SQUOTE] = ACTIONS(914), + [anon_sym_u8_SQUOTE] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(914), + [anon_sym_L_DQUOTE] = ACTIONS(914), + [anon_sym_u_DQUOTE] = ACTIONS(914), + [anon_sym_U_DQUOTE] = ACTIONS(914), + [anon_sym_u8_DQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [sym_null] = ACTIONS(912), [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), + [256] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(292), + [sym_attributed_statement] = STATE(292), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_switch_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), + [257] = { + [ts_builtin_sym_end] = ACTIONS(950), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [259] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, - [277] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [260] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1070), - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), + [261] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(218), + [sym_attributed_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1078), - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), + [262] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [sym_attribute_declaration] = STATE(151), + [sym_compound_statement] = STATE(150), + [sym_attributed_statement] = STATE(150), + [sym_labeled_statement] = STATE(150), + [sym_expression_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_switch_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_while_statement] = STATE(150), + [sym_do_statement] = STATE(150), + [sym_for_statement] = STATE(150), + [sym_return_statement] = STATE(150), + [sym_break_statement] = STATE(150), + [sym_continue_statement] = STATE(150), + [sym_goto_statement] = STATE(150), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [280] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [264] = { + [ts_builtin_sym_end] = ACTIONS(950), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), + [265] = { + [sym_identifier] = ACTIONS(908), + [aux_sym_preproc_include_token1] = ACTIONS(908), + [aux_sym_preproc_def_token1] = ACTIONS(908), + [aux_sym_preproc_if_token1] = ACTIONS(908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(908), + [sym_preproc_directive] = ACTIONS(908), + [anon_sym_LPAREN2] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_TILDE] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_typedef] = ACTIONS(908), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(910), + [anon_sym___declspec] = ACTIONS(908), + [anon_sym___cdecl] = ACTIONS(908), + [anon_sym___clrcall] = ACTIONS(908), + [anon_sym___stdcall] = ACTIONS(908), + [anon_sym___fastcall] = ACTIONS(908), + [anon_sym___thiscall] = ACTIONS(908), + [anon_sym___vectorcall] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym_const] = ACTIONS(908), + [anon_sym_volatile] = ACTIONS(908), + [anon_sym_restrict] = ACTIONS(908), + [anon_sym__Atomic] = ACTIONS(908), + [anon_sym_signed] = ACTIONS(908), + [anon_sym_unsigned] = ACTIONS(908), + [anon_sym_long] = ACTIONS(908), + [anon_sym_short] = ACTIONS(908), + [sym_primitive_type] = ACTIONS(908), + [anon_sym_enum] = ACTIONS(908), + [anon_sym_struct] = ACTIONS(908), + [anon_sym_union] = ACTIONS(908), + [anon_sym_if] = ACTIONS(908), + [anon_sym_else] = ACTIONS(908), + [anon_sym_switch] = ACTIONS(908), + [anon_sym_case] = ACTIONS(908), + [anon_sym_default] = ACTIONS(908), + [anon_sym_while] = ACTIONS(908), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(908), + [anon_sym_return] = ACTIONS(908), + [anon_sym_break] = ACTIONS(908), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_goto] = ACTIONS(908), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_sizeof] = ACTIONS(908), + [sym_number_literal] = ACTIONS(910), + [anon_sym_L_SQUOTE] = ACTIONS(910), + [anon_sym_u_SQUOTE] = ACTIONS(910), + [anon_sym_U_SQUOTE] = ACTIONS(910), + [anon_sym_u8_SQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(910), + [anon_sym_L_DQUOTE] = ACTIONS(910), + [anon_sym_u_DQUOTE] = ACTIONS(910), + [anon_sym_U_DQUOTE] = ACTIONS(910), + [anon_sym_u8_DQUOTE] = ACTIONS(910), + [anon_sym_DQUOTE] = ACTIONS(910), + [sym_true] = ACTIONS(908), + [sym_false] = ACTIONS(908), + [sym_null] = ACTIONS(908), [sym_comment] = ACTIONS(3), }, - [282] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [266] = { + [sym_attribute_declaration] = STATE(270), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), + [267] = { + [sym_identifier] = ACTIONS(904), + [aux_sym_preproc_include_token1] = ACTIONS(904), + [aux_sym_preproc_def_token1] = ACTIONS(904), + [aux_sym_preproc_if_token1] = ACTIONS(904), + [aux_sym_preproc_if_token2] = ACTIONS(904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(904), + [sym_preproc_directive] = ACTIONS(904), + [anon_sym_LPAREN2] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_typedef] = ACTIONS(904), + [anon_sym_extern] = ACTIONS(904), + [anon_sym___attribute__] = ACTIONS(904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(906), + [anon_sym___declspec] = ACTIONS(904), + [anon_sym___cdecl] = ACTIONS(904), + [anon_sym___clrcall] = ACTIONS(904), + [anon_sym___stdcall] = ACTIONS(904), + [anon_sym___fastcall] = ACTIONS(904), + [anon_sym___thiscall] = ACTIONS(904), + [anon_sym___vectorcall] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_static] = ACTIONS(904), + [anon_sym_auto] = ACTIONS(904), + [anon_sym_register] = ACTIONS(904), + [anon_sym_inline] = ACTIONS(904), + [anon_sym_const] = ACTIONS(904), + [anon_sym_volatile] = ACTIONS(904), + [anon_sym_restrict] = ACTIONS(904), + [anon_sym__Atomic] = ACTIONS(904), + [anon_sym_signed] = ACTIONS(904), + [anon_sym_unsigned] = ACTIONS(904), + [anon_sym_long] = ACTIONS(904), + [anon_sym_short] = ACTIONS(904), + [sym_primitive_type] = ACTIONS(904), + [anon_sym_enum] = ACTIONS(904), + [anon_sym_struct] = ACTIONS(904), + [anon_sym_union] = ACTIONS(904), + [anon_sym_if] = ACTIONS(904), + [anon_sym_else] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(904), + [anon_sym_case] = ACTIONS(904), + [anon_sym_default] = ACTIONS(904), + [anon_sym_while] = ACTIONS(904), + [anon_sym_do] = ACTIONS(904), + [anon_sym_for] = ACTIONS(904), + [anon_sym_return] = ACTIONS(904), + [anon_sym_break] = ACTIONS(904), + [anon_sym_continue] = ACTIONS(904), + [anon_sym_goto] = ACTIONS(904), + [anon_sym_DASH_DASH] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_sizeof] = ACTIONS(904), + [sym_number_literal] = ACTIONS(906), + [anon_sym_L_SQUOTE] = ACTIONS(906), + [anon_sym_u_SQUOTE] = ACTIONS(906), + [anon_sym_U_SQUOTE] = ACTIONS(906), + [anon_sym_u8_SQUOTE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_L_DQUOTE] = ACTIONS(906), + [anon_sym_u_DQUOTE] = ACTIONS(906), + [anon_sym_U_DQUOTE] = ACTIONS(906), + [anon_sym_u8_DQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(906), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [sym_null] = ACTIONS(904), + [sym_comment] = ACTIONS(3), + }, + [268] = { + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [269] = { + [sym_identifier] = ACTIONS(896), + [aux_sym_preproc_include_token1] = ACTIONS(896), + [aux_sym_preproc_def_token1] = ACTIONS(896), + [aux_sym_preproc_if_token1] = ACTIONS(896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(896), + [sym_preproc_directive] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_TILDE] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_typedef] = ACTIONS(896), + [anon_sym_extern] = ACTIONS(896), + [anon_sym___attribute__] = ACTIONS(896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(898), + [anon_sym___declspec] = ACTIONS(896), + [anon_sym___cdecl] = ACTIONS(896), + [anon_sym___clrcall] = ACTIONS(896), + [anon_sym___stdcall] = ACTIONS(896), + [anon_sym___fastcall] = ACTIONS(896), + [anon_sym___thiscall] = ACTIONS(896), + [anon_sym___vectorcall] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_static] = ACTIONS(896), + [anon_sym_auto] = ACTIONS(896), + [anon_sym_register] = ACTIONS(896), + [anon_sym_inline] = ACTIONS(896), + [anon_sym_const] = ACTIONS(896), + [anon_sym_volatile] = ACTIONS(896), + [anon_sym_restrict] = ACTIONS(896), + [anon_sym__Atomic] = ACTIONS(896), + [anon_sym_signed] = ACTIONS(896), + [anon_sym_unsigned] = ACTIONS(896), + [anon_sym_long] = ACTIONS(896), + [anon_sym_short] = ACTIONS(896), + [sym_primitive_type] = ACTIONS(896), + [anon_sym_enum] = ACTIONS(896), + [anon_sym_struct] = ACTIONS(896), + [anon_sym_union] = ACTIONS(896), + [anon_sym_if] = ACTIONS(896), + [anon_sym_else] = ACTIONS(896), + [anon_sym_switch] = ACTIONS(896), + [anon_sym_case] = ACTIONS(896), + [anon_sym_default] = ACTIONS(896), + [anon_sym_while] = ACTIONS(896), + [anon_sym_do] = ACTIONS(896), + [anon_sym_for] = ACTIONS(896), + [anon_sym_return] = ACTIONS(896), + [anon_sym_break] = ACTIONS(896), + [anon_sym_continue] = ACTIONS(896), + [anon_sym_goto] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_sizeof] = ACTIONS(896), + [sym_number_literal] = ACTIONS(898), + [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(898), + [anon_sym_u_DQUOTE] = ACTIONS(898), + [anon_sym_U_DQUOTE] = ACTIONS(898), + [anon_sym_u8_DQUOTE] = ACTIONS(898), + [anon_sym_DQUOTE] = ACTIONS(898), + [sym_true] = ACTIONS(896), + [sym_false] = ACTIONS(896), + [sym_null] = ACTIONS(896), [sym_comment] = ACTIONS(3), }, - [285] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), + [270] = { + [sym_attribute_declaration] = STATE(236), + [sym_compound_statement] = STATE(245), + [sym_attributed_statement] = STATE(245), + [sym_labeled_statement] = STATE(245), + [sym_expression_statement] = STATE(245), + [sym_if_statement] = STATE(245), + [sym_switch_statement] = STATE(245), + [sym_case_statement] = STATE(245), + [sym_while_statement] = STATE(245), + [sym_do_statement] = STATE(245), + [sym_for_statement] = STATE(245), + [sym_return_statement] = STATE(245), + [sym_break_statement] = STATE(245), + [sym_continue_statement] = STATE(245), + [sym_goto_statement] = STATE(245), + [sym__expression] = STATE(735), + [sym_comma_expression] = STATE(1320), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(1130), + [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(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [286] = { - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [271] = { + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(900), + [aux_sym_preproc_include_token1] = ACTIONS(900), + [aux_sym_preproc_def_token1] = ACTIONS(900), + [aux_sym_preproc_if_token1] = ACTIONS(900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(900), + [sym_preproc_directive] = ACTIONS(900), + [anon_sym_LPAREN2] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_typedef] = ACTIONS(900), + [anon_sym_extern] = ACTIONS(900), + [anon_sym___attribute__] = ACTIONS(900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(902), + [anon_sym___declspec] = ACTIONS(900), + [anon_sym___cdecl] = ACTIONS(900), + [anon_sym___clrcall] = ACTIONS(900), + [anon_sym___stdcall] = ACTIONS(900), + [anon_sym___fastcall] = ACTIONS(900), + [anon_sym___thiscall] = ACTIONS(900), + [anon_sym___vectorcall] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_static] = ACTIONS(900), + [anon_sym_auto] = ACTIONS(900), + [anon_sym_register] = ACTIONS(900), + [anon_sym_inline] = ACTIONS(900), + [anon_sym_const] = ACTIONS(900), + [anon_sym_volatile] = ACTIONS(900), + [anon_sym_restrict] = ACTIONS(900), + [anon_sym__Atomic] = ACTIONS(900), + [anon_sym_signed] = ACTIONS(900), + [anon_sym_unsigned] = ACTIONS(900), + [anon_sym_long] = ACTIONS(900), + [anon_sym_short] = ACTIONS(900), + [sym_primitive_type] = ACTIONS(900), + [anon_sym_enum] = ACTIONS(900), + [anon_sym_struct] = ACTIONS(900), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(900), + [anon_sym_else] = ACTIONS(900), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_case] = ACTIONS(900), + [anon_sym_default] = ACTIONS(900), + [anon_sym_while] = ACTIONS(900), + [anon_sym_do] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_return] = ACTIONS(900), + [anon_sym_break] = ACTIONS(900), + [anon_sym_continue] = ACTIONS(900), + [anon_sym_goto] = ACTIONS(900), + [anon_sym_DASH_DASH] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_sizeof] = ACTIONS(900), + [sym_number_literal] = ACTIONS(902), + [anon_sym_L_SQUOTE] = ACTIONS(902), + [anon_sym_u_SQUOTE] = ACTIONS(902), + [anon_sym_U_SQUOTE] = ACTIONS(902), + [anon_sym_u8_SQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_L_DQUOTE] = ACTIONS(902), + [anon_sym_u_DQUOTE] = ACTIONS(902), + [anon_sym_U_DQUOTE] = ACTIONS(902), + [anon_sym_u8_DQUOTE] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(902), + [sym_true] = ACTIONS(900), + [sym_false] = ACTIONS(900), + [sym_null] = ACTIONS(900), [sym_comment] = ACTIONS(3), }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), + [272] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(92), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_case_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_RBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), + [273] = { + [sym_attribute_declaration] = STATE(139), + [sym_compound_statement] = STATE(253), + [sym_attributed_statement] = STATE(253), + [sym_labeled_statement] = STATE(253), + [sym_expression_statement] = STATE(253), + [sym_if_statement] = STATE(253), + [sym_switch_statement] = STATE(253), + [sym_case_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_do_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(253), + [sym_continue_statement] = STATE(253), + [sym_goto_statement] = STATE(253), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1327), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1128), + [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(357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_if] = ACTIONS(367), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_case] = ACTIONS(371), + [anon_sym_default] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(377), + [anon_sym_for] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_goto] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [sym_identifier] = ACTIONS(900), + [aux_sym_preproc_include_token1] = ACTIONS(900), + [aux_sym_preproc_def_token1] = ACTIONS(900), + [aux_sym_preproc_if_token1] = ACTIONS(900), + [aux_sym_preproc_if_token2] = ACTIONS(900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(900), + [sym_preproc_directive] = ACTIONS(900), + [anon_sym_LPAREN2] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_typedef] = ACTIONS(900), + [anon_sym_extern] = ACTIONS(900), + [anon_sym___attribute__] = ACTIONS(900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(902), + [anon_sym___declspec] = ACTIONS(900), + [anon_sym___cdecl] = ACTIONS(900), + [anon_sym___clrcall] = ACTIONS(900), + [anon_sym___stdcall] = ACTIONS(900), + [anon_sym___fastcall] = ACTIONS(900), + [anon_sym___thiscall] = ACTIONS(900), + [anon_sym___vectorcall] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_static] = ACTIONS(900), + [anon_sym_auto] = ACTIONS(900), + [anon_sym_register] = ACTIONS(900), + [anon_sym_inline] = ACTIONS(900), + [anon_sym_const] = ACTIONS(900), + [anon_sym_volatile] = ACTIONS(900), + [anon_sym_restrict] = ACTIONS(900), + [anon_sym__Atomic] = ACTIONS(900), + [anon_sym_signed] = ACTIONS(900), + [anon_sym_unsigned] = ACTIONS(900), + [anon_sym_long] = ACTIONS(900), + [anon_sym_short] = ACTIONS(900), + [sym_primitive_type] = ACTIONS(900), + [anon_sym_enum] = ACTIONS(900), + [anon_sym_struct] = ACTIONS(900), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(900), + [anon_sym_else] = ACTIONS(900), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_case] = ACTIONS(900), + [anon_sym_default] = ACTIONS(900), + [anon_sym_while] = ACTIONS(900), + [anon_sym_do] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_return] = ACTIONS(900), + [anon_sym_break] = ACTIONS(900), + [anon_sym_continue] = ACTIONS(900), + [anon_sym_goto] = ACTIONS(900), + [anon_sym_DASH_DASH] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_sizeof] = ACTIONS(900), + [sym_number_literal] = ACTIONS(902), + [anon_sym_L_SQUOTE] = ACTIONS(902), + [anon_sym_u_SQUOTE] = ACTIONS(902), + [anon_sym_U_SQUOTE] = ACTIONS(902), + [anon_sym_u8_SQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_L_DQUOTE] = ACTIONS(902), + [anon_sym_u_DQUOTE] = ACTIONS(902), + [anon_sym_U_DQUOTE] = ACTIONS(902), + [anon_sym_u8_DQUOTE] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(902), + [sym_true] = ACTIONS(900), + [sym_false] = ACTIONS(900), + [sym_null] = ACTIONS(900), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(86), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token2] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [277] = { + [ts_builtin_sym_end] = ACTIONS(906), + [sym_identifier] = ACTIONS(904), + [aux_sym_preproc_include_token1] = ACTIONS(904), + [aux_sym_preproc_def_token1] = ACTIONS(904), + [aux_sym_preproc_if_token1] = ACTIONS(904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(904), + [sym_preproc_directive] = ACTIONS(904), + [anon_sym_LPAREN2] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_typedef] = ACTIONS(904), + [anon_sym_extern] = ACTIONS(904), + [anon_sym___attribute__] = ACTIONS(904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(906), + [anon_sym___declspec] = ACTIONS(904), + [anon_sym___cdecl] = ACTIONS(904), + [anon_sym___clrcall] = ACTIONS(904), + [anon_sym___stdcall] = ACTIONS(904), + [anon_sym___fastcall] = ACTIONS(904), + [anon_sym___thiscall] = ACTIONS(904), + [anon_sym___vectorcall] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_static] = ACTIONS(904), + [anon_sym_auto] = ACTIONS(904), + [anon_sym_register] = ACTIONS(904), + [anon_sym_inline] = ACTIONS(904), + [anon_sym_const] = ACTIONS(904), + [anon_sym_volatile] = ACTIONS(904), + [anon_sym_restrict] = ACTIONS(904), + [anon_sym__Atomic] = ACTIONS(904), + [anon_sym_signed] = ACTIONS(904), + [anon_sym_unsigned] = ACTIONS(904), + [anon_sym_long] = ACTIONS(904), + [anon_sym_short] = ACTIONS(904), + [sym_primitive_type] = ACTIONS(904), + [anon_sym_enum] = ACTIONS(904), + [anon_sym_struct] = ACTIONS(904), + [anon_sym_union] = ACTIONS(904), + [anon_sym_if] = ACTIONS(904), + [anon_sym_else] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(904), + [anon_sym_case] = ACTIONS(904), + [anon_sym_default] = ACTIONS(904), + [anon_sym_while] = ACTIONS(904), + [anon_sym_do] = ACTIONS(904), + [anon_sym_for] = ACTIONS(904), + [anon_sym_return] = ACTIONS(904), + [anon_sym_break] = ACTIONS(904), + [anon_sym_continue] = ACTIONS(904), + [anon_sym_goto] = ACTIONS(904), + [anon_sym_DASH_DASH] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_sizeof] = ACTIONS(904), + [sym_number_literal] = ACTIONS(906), + [anon_sym_L_SQUOTE] = ACTIONS(906), + [anon_sym_u_SQUOTE] = ACTIONS(906), + [anon_sym_U_SQUOTE] = ACTIONS(906), + [anon_sym_u8_SQUOTE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_L_DQUOTE] = ACTIONS(906), + [anon_sym_u_DQUOTE] = ACTIONS(906), + [anon_sym_U_DQUOTE] = ACTIONS(906), + [anon_sym_u8_DQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(906), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [sym_null] = ACTIONS(904), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [278] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(1422), + [sym_attributed_statement] = STATE(1422), + [sym_labeled_statement] = STATE(1422), + [sym_expression_statement] = STATE(1422), + [sym_if_statement] = STATE(1422), + [sym_switch_statement] = STATE(1422), + [sym_case_statement] = STATE(1422), + [sym_while_statement] = STATE(1422), + [sym_do_statement] = STATE(1422), + [sym_for_statement] = STATE(1422), + [sym_return_statement] = STATE(1422), + [sym_break_statement] = STATE(1422), + [sym_continue_statement] = STATE(1422), + [sym_goto_statement] = STATE(1422), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1074), - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [279] = { + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), [sym_comment] = ACTIONS(3), }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), + [280] = { + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [281] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(87), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_case_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(88), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_case_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [293] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), + [283] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(190), + [sym_attributed_statement] = STATE(190), + [sym_labeled_statement] = STATE(190), + [sym_expression_statement] = STATE(190), + [sym_if_statement] = STATE(190), + [sym_switch_statement] = STATE(190), + [sym_case_statement] = STATE(190), + [sym_while_statement] = STATE(190), + [sym_do_statement] = STATE(190), + [sym_for_statement] = STATE(190), + [sym_return_statement] = STATE(190), + [sym_break_statement] = STATE(190), + [sym_continue_statement] = STATE(190), + [sym_goto_statement] = STATE(190), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [294] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [284] = { + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [285] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [286] = { + [sym_attribute_declaration] = STATE(185), + [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__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [297] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [287] = { + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token2] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), + [288] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [299] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [289] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(197), + [sym_attributed_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_switch_statement] = STATE(197), + [sym_case_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_goto_statement] = STATE(197), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token2] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [290] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [291] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token2] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [292] = { + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_identifier] = ACTIONS(1124), - [aux_sym_preproc_include_token1] = ACTIONS(1124), - [aux_sym_preproc_def_token1] = ACTIONS(1124), - [aux_sym_preproc_if_token1] = ACTIONS(1124), - [aux_sym_preproc_if_token2] = ACTIONS(1124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), - [sym_preproc_directive] = ACTIONS(1124), - [anon_sym_LPAREN2] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_typedef] = ACTIONS(1124), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym___attribute__] = ACTIONS(1124), + [293] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(94), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_case_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym___declspec] = ACTIONS(1124), - [anon_sym___cdecl] = ACTIONS(1124), - [anon_sym___clrcall] = ACTIONS(1124), - [anon_sym___stdcall] = ACTIONS(1124), - [anon_sym___fastcall] = ACTIONS(1124), - [anon_sym___thiscall] = ACTIONS(1124), - [anon_sym___vectorcall] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_auto] = ACTIONS(1124), - [anon_sym_register] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_volatile] = ACTIONS(1124), - [anon_sym_restrict] = ACTIONS(1124), - [anon_sym__Atomic] = ACTIONS(1124), - [anon_sym_signed] = ACTIONS(1124), - [anon_sym_unsigned] = ACTIONS(1124), - [anon_sym_long] = ACTIONS(1124), - [anon_sym_short] = ACTIONS(1124), - [sym_primitive_type] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_struct] = ACTIONS(1124), - [anon_sym_union] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_switch] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1124), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_goto] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_sizeof] = ACTIONS(1124), - [sym_number_literal] = ACTIONS(1126), - [anon_sym_L_SQUOTE] = ACTIONS(1126), - [anon_sym_u_SQUOTE] = ACTIONS(1126), - [anon_sym_U_SQUOTE] = ACTIONS(1126), - [anon_sym_u8_SQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_L_DQUOTE] = ACTIONS(1126), - [anon_sym_u_DQUOTE] = ACTIONS(1126), - [anon_sym_U_DQUOTE] = ACTIONS(1126), - [anon_sym_u8_DQUOTE] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [sym_true] = ACTIONS(1124), - [sym_false] = ACTIONS(1124), - [sym_null] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [294] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_compound_statement] = STATE(100), - [sym_labeled_statement] = STATE(100), - [sym_expression_statement] = STATE(100), - [sym_if_statement] = STATE(100), - [sym_switch_statement] = STATE(100), - [sym_case_statement] = STATE(100), - [sym_while_statement] = STATE(100), - [sym_do_statement] = STATE(100), - [sym_for_statement] = STATE(100), - [sym_return_statement] = STATE(100), - [sym_break_statement] = STATE(100), - [sym_continue_statement] = STATE(100), - [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), + [295] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(227), + [sym_attributed_statement] = STATE(227), + [sym_labeled_statement] = STATE(227), + [sym_expression_statement] = STATE(227), + [sym_if_statement] = STATE(227), + [sym_switch_statement] = STATE(227), + [sym_case_statement] = STATE(227), + [sym_while_statement] = STATE(227), + [sym_do_statement] = STATE(227), + [sym_for_statement] = STATE(227), + [sym_return_statement] = STATE(227), + [sym_break_statement] = STATE(227), + [sym_continue_statement] = STATE(227), + [sym_goto_statement] = STATE(227), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33789,19 +33089,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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33821,39 +33122,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_compound_statement] = STATE(1410), - [sym_labeled_statement] = STATE(1410), - [sym_expression_statement] = STATE(1410), - [sym_if_statement] = STATE(1410), - [sym_switch_statement] = STATE(1410), - [sym_case_statement] = STATE(1410), - [sym_while_statement] = STATE(1410), - [sym_do_statement] = STATE(1410), - [sym_for_statement] = STATE(1410), - [sym_return_statement] = STATE(1410), - [sym_break_statement] = STATE(1410), - [sym_continue_statement] = STATE(1410), - [sym_goto_statement] = STATE(1410), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), + [296] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(217), + [sym_attributed_statement] = STATE(217), + [sym_labeled_statement] = STATE(217), + [sym_expression_statement] = STATE(217), + [sym_if_statement] = STATE(217), + [sym_switch_statement] = STATE(217), + [sym_case_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_do_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_return_statement] = STATE(217), + [sym_break_statement] = STATE(217), + [sym_continue_statement] = STATE(217), + [sym_goto_statement] = STATE(217), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33862,6 +33166,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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -33893,39 +33198,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_compound_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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), + [297] = { + [ts_builtin_sym_end] = ACTIONS(926), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [298] = { + [ts_builtin_sym_end] = ACTIONS(918), + [sym_identifier] = ACTIONS(916), + [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), + [anon_sym_LPAREN2] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_typedef] = ACTIONS(916), + [anon_sym_extern] = ACTIONS(916), + [anon_sym___attribute__] = ACTIONS(916), + [anon_sym_LBRACK_LBRACK] = ACTIONS(918), + [anon_sym___declspec] = ACTIONS(916), + [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(918), + [anon_sym_static] = ACTIONS(916), + [anon_sym_auto] = ACTIONS(916), + [anon_sym_register] = ACTIONS(916), + [anon_sym_inline] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym_signed] = ACTIONS(916), + [anon_sym_unsigned] = ACTIONS(916), + [anon_sym_long] = ACTIONS(916), + [anon_sym_short] = ACTIONS(916), + [sym_primitive_type] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_struct] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(916), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_goto] = ACTIONS(916), + [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(918), + [anon_sym_sizeof] = ACTIONS(916), + [sym_number_literal] = ACTIONS(918), + [anon_sym_L_SQUOTE] = ACTIONS(918), + [anon_sym_u_SQUOTE] = ACTIONS(918), + [anon_sym_U_SQUOTE] = ACTIONS(918), + [anon_sym_u8_SQUOTE] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(918), + [anon_sym_L_DQUOTE] = ACTIONS(918), + [anon_sym_u_DQUOTE] = ACTIONS(918), + [anon_sym_U_DQUOTE] = ACTIONS(918), + [anon_sym_u8_DQUOTE] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(918), + [sym_true] = ACTIONS(916), + [sym_false] = ACTIONS(916), + [sym_null] = ACTIONS(916), + [sym_comment] = ACTIONS(3), + }, + [299] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(233), + [sym_attributed_statement] = STATE(233), + [sym_labeled_statement] = STATE(233), + [sym_expression_statement] = STATE(233), + [sym_if_statement] = STATE(233), + [sym_switch_statement] = STATE(233), + [sym_case_statement] = STATE(233), + [sym_while_statement] = STATE(233), + [sym_do_statement] = STATE(233), + [sym_for_statement] = STATE(233), + [sym_return_statement] = STATE(233), + [sym_break_statement] = STATE(233), + [sym_continue_statement] = STATE(233), + [sym_goto_statement] = STATE(233), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33933,19 +33393,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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33965,39 +33426,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_compound_statement] = STATE(207), - [sym_labeled_statement] = STATE(207), - [sym_expression_statement] = STATE(207), - [sym_if_statement] = STATE(207), - [sym_switch_statement] = STATE(207), - [sym_case_statement] = STATE(207), - [sym_while_statement] = STATE(207), - [sym_do_statement] = STATE(207), - [sym_for_statement] = STATE(207), - [sym_return_statement] = STATE(207), - [sym_break_statement] = STATE(207), - [sym_continue_statement] = STATE(207), - [sym_goto_statement] = STATE(207), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), + [300] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(96), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_case_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34005,19 +33469,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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34037,39 +33502,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_compound_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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), + [301] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(85), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_case_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34077,19 +33545,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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34109,39 +33578,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [310] = { - [sym_compound_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_switch_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_goto_statement] = STATE(203), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), + [302] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(103), + [sym_attributed_statement] = STATE(103), + [sym_labeled_statement] = STATE(103), + [sym_expression_statement] = STATE(103), + [sym_if_statement] = STATE(103), + [sym_switch_statement] = STATE(103), + [sym_case_statement] = STATE(103), + [sym_while_statement] = STATE(103), + [sym_do_statement] = STATE(103), + [sym_for_statement] = STATE(103), + [sym_return_statement] = STATE(103), + [sym_break_statement] = STATE(103), + [sym_continue_statement] = STATE(103), + [sym_goto_statement] = STATE(103), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34149,19 +33621,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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34181,39 +33654,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_compound_statement] = STATE(202), - [sym_labeled_statement] = STATE(202), - [sym_expression_statement] = STATE(202), - [sym_if_statement] = STATE(202), - [sym_switch_statement] = STATE(202), - [sym_case_statement] = STATE(202), - [sym_while_statement] = STATE(202), - [sym_do_statement] = STATE(202), - [sym_for_statement] = STATE(202), - [sym_return_statement] = STATE(202), - [sym_break_statement] = STATE(202), - [sym_continue_statement] = STATE(202), - [sym_goto_statement] = STATE(202), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), + [303] = { + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(102), + [sym_attributed_statement] = STATE(102), + [sym_labeled_statement] = STATE(102), + [sym_expression_statement] = STATE(102), + [sym_if_statement] = STATE(102), + [sym_switch_statement] = STATE(102), + [sym_case_statement] = STATE(102), + [sym_while_statement] = STATE(102), + [sym_do_statement] = STATE(102), + [sym_for_statement] = STATE(102), + [sym_return_statement] = STATE(102), + [sym_break_statement] = STATE(102), + [sym_continue_statement] = STATE(102), + [sym_goto_statement] = STATE(102), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34221,19 +33773,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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34253,39 +33806,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym_compound_statement] = STATE(200), - [sym_labeled_statement] = STATE(200), - [sym_expression_statement] = STATE(200), - [sym_if_statement] = STATE(200), - [sym_switch_statement] = STATE(200), - [sym_case_statement] = STATE(200), - [sym_while_statement] = STATE(200), - [sym_do_statement] = STATE(200), - [sym_for_statement] = STATE(200), - [sym_return_statement] = STATE(200), - [sym_break_statement] = STATE(200), - [sym_continue_statement] = STATE(200), - [sym_goto_statement] = STATE(200), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), + [305] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(101), + [sym_attributed_statement] = STATE(101), + [sym_labeled_statement] = STATE(101), + [sym_expression_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_switch_statement] = STATE(101), + [sym_case_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_do_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_return_statement] = STATE(101), + [sym_break_statement] = STATE(101), + [sym_continue_statement] = STATE(101), + [sym_goto_statement] = STATE(101), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34293,19 +33849,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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34325,59 +33882,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [313] = { - [sym_compound_statement] = STATE(1447), - [sym_labeled_statement] = STATE(1447), - [sym_expression_statement] = STATE(1447), - [sym_if_statement] = STATE(1447), - [sym_switch_statement] = STATE(1447), - [sym_case_statement] = STATE(1447), - [sym_while_statement] = STATE(1447), - [sym_do_statement] = STATE(1447), - [sym_for_statement] = STATE(1447), - [sym_return_statement] = STATE(1447), - [sym_break_statement] = STATE(1447), - [sym_continue_statement] = STATE(1447), - [sym_goto_statement] = STATE(1447), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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), + [306] = { + [ts_builtin_sym_end] = ACTIONS(914), + [sym_identifier] = ACTIONS(912), + [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), + [anon_sym_LPAREN2] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_typedef] = ACTIONS(912), + [anon_sym_extern] = ACTIONS(912), + [anon_sym___attribute__] = ACTIONS(912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(912), + [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(914), + [anon_sym_static] = ACTIONS(912), + [anon_sym_auto] = ACTIONS(912), + [anon_sym_register] = ACTIONS(912), + [anon_sym_inline] = ACTIONS(912), + [anon_sym_const] = ACTIONS(912), + [anon_sym_volatile] = ACTIONS(912), + [anon_sym_restrict] = ACTIONS(912), + [anon_sym__Atomic] = ACTIONS(912), + [anon_sym_signed] = ACTIONS(912), + [anon_sym_unsigned] = ACTIONS(912), + [anon_sym_long] = ACTIONS(912), + [anon_sym_short] = ACTIONS(912), + [sym_primitive_type] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_struct] = ACTIONS(912), + [anon_sym_union] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_do] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_goto] = ACTIONS(912), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_sizeof] = ACTIONS(912), + [sym_number_literal] = ACTIONS(914), + [anon_sym_L_SQUOTE] = ACTIONS(914), + [anon_sym_u_SQUOTE] = ACTIONS(914), + [anon_sym_U_SQUOTE] = ACTIONS(914), + [anon_sym_u8_SQUOTE] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(914), + [anon_sym_L_DQUOTE] = ACTIONS(914), + [anon_sym_u_DQUOTE] = ACTIONS(914), + [anon_sym_U_DQUOTE] = ACTIONS(914), + [anon_sym_u8_DQUOTE] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(914), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [sym_null] = ACTIONS(912), + [sym_comment] = ACTIONS(3), + }, + [307] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(98), + [sym_attributed_statement] = STATE(98), + [sym_labeled_statement] = STATE(98), + [sym_expression_statement] = STATE(98), + [sym_if_statement] = STATE(98), + [sym_switch_statement] = STATE(98), + [sym_case_statement] = STATE(98), + [sym_while_statement] = STATE(98), + [sym_do_statement] = STATE(98), + [sym_for_statement] = STATE(98), + [sym_return_statement] = STATE(98), + [sym_break_statement] = STATE(98), + [sym_continue_statement] = STATE(98), + [sym_goto_statement] = STATE(98), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34397,39 +34034,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [314] = { - [sym_compound_statement] = STATE(199), - [sym_labeled_statement] = STATE(199), - [sym_expression_statement] = STATE(199), - [sym_if_statement] = STATE(199), - [sym_switch_statement] = STATE(199), - [sym_case_statement] = STATE(199), - [sym_while_statement] = STATE(199), - [sym_do_statement] = STATE(199), - [sym_for_statement] = STATE(199), - [sym_return_statement] = STATE(199), - [sym_break_statement] = STATE(199), - [sym_continue_statement] = STATE(199), - [sym_goto_statement] = STATE(199), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), + [308] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(100), + [sym_attributed_statement] = STATE(100), + [sym_labeled_statement] = STATE(100), + [sym_expression_statement] = STATE(100), + [sym_if_statement] = STATE(100), + [sym_switch_statement] = STATE(100), + [sym_case_statement] = STATE(100), + [sym_while_statement] = STATE(100), + [sym_do_statement] = STATE(100), + [sym_for_statement] = STATE(100), + [sym_return_statement] = STATE(100), + [sym_break_statement] = STATE(100), + [sym_continue_statement] = STATE(100), + [sym_goto_statement] = STATE(100), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1440), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34437,19 +34077,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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34469,39 +34110,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [315] = { - [sym_compound_statement] = STATE(198), - [sym_labeled_statement] = STATE(198), - [sym_expression_statement] = STATE(198), - [sym_if_statement] = STATE(198), - [sym_switch_statement] = STATE(198), - [sym_case_statement] = STATE(198), - [sym_while_statement] = STATE(198), - [sym_do_statement] = STATE(198), - [sym_for_statement] = STATE(198), - [sym_return_statement] = STATE(198), - [sym_break_statement] = STATE(198), - [sym_continue_statement] = STATE(198), - [sym_goto_statement] = STATE(198), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), + [309] = { + [sym_attribute_declaration] = STATE(263), + [sym_compound_statement] = STATE(232), + [sym_attributed_statement] = STATE(232), + [sym_labeled_statement] = STATE(232), + [sym_expression_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_switch_statement] = STATE(232), + [sym_case_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_do_statement] = STATE(232), + [sym_for_statement] = STATE(232), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(232), + [sym_continue_statement] = STATE(232), + [sym_goto_statement] = STATE(232), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1426), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34509,19 +34153,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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -34541,4418 +34186,4751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, + [310] = { + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + }, + [311] = { + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token2] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, + [312] = { + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + }, + [313] = { + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [315] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, [316] = { - [sym_compound_statement] = STATE(1438), - [sym_labeled_statement] = STATE(1438), - [sym_expression_statement] = STATE(1438), - [sym_if_statement] = STATE(1438), - [sym_switch_statement] = STATE(1438), - [sym_case_statement] = STATE(1438), - [sym_while_statement] = STATE(1438), - [sym_do_statement] = STATE(1438), - [sym_for_statement] = STATE(1438), - [sym_return_statement] = STATE(1438), - [sym_break_statement] = STATE(1438), - [sym_continue_statement] = STATE(1438), - [sym_goto_statement] = STATE(1438), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, [317] = { - [sym_attribute_declaration] = STATE(613), - [sym_compound_statement] = STATE(151), - [sym_labeled_statement] = STATE(151), - [sym_expression_statement] = STATE(151), - [sym_if_statement] = STATE(151), - [sym_switch_statement] = STATE(151), - [sym_while_statement] = STATE(151), - [sym_do_statement] = STATE(151), - [sym_for_statement] = STATE(151), - [sym_return_statement] = STATE(151), - [sym_break_statement] = STATE(151), - [sym_continue_statement] = STATE(151), - [sym_goto_statement] = STATE(151), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [aux_sym_attributed_declarator_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1134), - [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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, [318] = { - [sym_compound_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), [sym_comment] = ACTIONS(3), }, [319] = { - [sym_compound_statement] = STATE(208), - [sym_labeled_statement] = STATE(208), - [sym_expression_statement] = STATE(208), - [sym_if_statement] = STATE(208), - [sym_switch_statement] = STATE(208), - [sym_case_statement] = STATE(208), - [sym_while_statement] = STATE(208), - [sym_do_statement] = STATE(208), - [sym_for_statement] = STATE(208), - [sym_return_statement] = STATE(208), - [sym_break_statement] = STATE(208), - [sym_continue_statement] = STATE(208), - [sym_goto_statement] = STATE(208), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [320] = { - [sym_compound_statement] = STATE(227), - [sym_labeled_statement] = STATE(227), - [sym_expression_statement] = STATE(227), - [sym_if_statement] = STATE(227), - [sym_switch_statement] = STATE(227), - [sym_case_statement] = STATE(227), - [sym_while_statement] = STATE(227), - [sym_do_statement] = STATE(227), - [sym_for_statement] = STATE(227), - [sym_return_statement] = STATE(227), - [sym_break_statement] = STATE(227), - [sym_continue_statement] = STATE(227), - [sym_goto_statement] = STATE(227), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + }, + [320] = { + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, [321] = { - [sym_compound_statement] = STATE(169), - [sym_labeled_statement] = STATE(169), - [sym_expression_statement] = STATE(169), - [sym_if_statement] = STATE(169), - [sym_switch_statement] = STATE(169), - [sym_case_statement] = STATE(169), - [sym_while_statement] = STATE(169), - [sym_do_statement] = STATE(169), - [sym_for_statement] = STATE(169), - [sym_return_statement] = STATE(169), - [sym_break_statement] = STATE(169), - [sym_continue_statement] = STATE(169), - [sym_goto_statement] = STATE(169), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token2] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, [322] = { - [sym_compound_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, [323] = { - [sym_compound_statement] = STATE(161), - [sym_labeled_statement] = STATE(161), - [sym_expression_statement] = STATE(161), - [sym_if_statement] = STATE(161), - [sym_switch_statement] = STATE(161), - [sym_case_statement] = STATE(161), - [sym_while_statement] = STATE(161), - [sym_do_statement] = STATE(161), - [sym_for_statement] = STATE(161), - [sym_return_statement] = STATE(161), - [sym_break_statement] = STATE(161), - [sym_continue_statement] = STATE(161), - [sym_goto_statement] = STATE(161), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token2] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, [324] = { - [sym_compound_statement] = STATE(184), - [sym_labeled_statement] = STATE(184), - [sym_expression_statement] = STATE(184), - [sym_if_statement] = STATE(184), - [sym_switch_statement] = STATE(184), - [sym_case_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_do_statement] = STATE(184), - [sym_for_statement] = STATE(184), - [sym_return_statement] = STATE(184), - [sym_break_statement] = STATE(184), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(184), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, [325] = { - [sym_compound_statement] = STATE(143), - [sym_labeled_statement] = STATE(143), - [sym_expression_statement] = STATE(143), - [sym_if_statement] = STATE(143), - [sym_switch_statement] = STATE(143), - [sym_case_statement] = STATE(143), - [sym_while_statement] = STATE(143), - [sym_do_statement] = STATE(143), - [sym_for_statement] = STATE(143), - [sym_return_statement] = STATE(143), - [sym_break_statement] = STATE(143), - [sym_continue_statement] = STATE(143), - [sym_goto_statement] = STATE(143), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, [326] = { - [sym_compound_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_case_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [sym_do_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), - [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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, [327] = { - [sym_compound_statement] = STATE(139), - [sym_labeled_statement] = STATE(139), - [sym_expression_statement] = STATE(139), - [sym_if_statement] = STATE(139), - [sym_switch_statement] = STATE(139), - [sym_case_statement] = STATE(139), - [sym_while_statement] = STATE(139), - [sym_do_statement] = STATE(139), - [sym_for_statement] = STATE(139), - [sym_return_statement] = STATE(139), - [sym_break_statement] = STATE(139), - [sym_continue_statement] = STATE(139), - [sym_goto_statement] = STATE(139), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), + [anon_sym___declspec] = ACTIONS(1044), + [anon_sym___cdecl] = ACTIONS(1044), + [anon_sym___clrcall] = ACTIONS(1044), + [anon_sym___stdcall] = ACTIONS(1044), + [anon_sym___fastcall] = ACTIONS(1044), + [anon_sym___thiscall] = ACTIONS(1044), + [anon_sym___vectorcall] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), [sym_comment] = ACTIONS(3), }, [328] = { - [sym_compound_statement] = STATE(231), - [sym_labeled_statement] = STATE(231), - [sym_expression_statement] = STATE(231), - [sym_if_statement] = STATE(231), - [sym_switch_statement] = STATE(231), - [sym_case_statement] = STATE(231), - [sym_while_statement] = STATE(231), - [sym_do_statement] = STATE(231), - [sym_for_statement] = STATE(231), - [sym_return_statement] = STATE(231), - [sym_break_statement] = STATE(231), - [sym_continue_statement] = STATE(231), - [sym_goto_statement] = STATE(231), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [329] = { - [sym_compound_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_case_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token2] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, [330] = { - [sym_compound_statement] = STATE(153), - [sym_labeled_statement] = STATE(153), - [sym_expression_statement] = STATE(153), - [sym_if_statement] = STATE(153), - [sym_switch_statement] = STATE(153), - [sym_case_statement] = STATE(153), - [sym_while_statement] = STATE(153), - [sym_do_statement] = STATE(153), - [sym_for_statement] = STATE(153), - [sym_return_statement] = STATE(153), - [sym_break_statement] = STATE(153), - [sym_continue_statement] = STATE(153), - [sym_goto_statement] = STATE(153), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, [331] = { - [sym_compound_statement] = STATE(220), - [sym_labeled_statement] = STATE(220), - [sym_expression_statement] = STATE(220), - [sym_if_statement] = STATE(220), - [sym_switch_statement] = STATE(220), - [sym_case_statement] = STATE(220), - [sym_while_statement] = STATE(220), - [sym_do_statement] = STATE(220), - [sym_for_statement] = STATE(220), - [sym_return_statement] = STATE(220), - [sym_break_statement] = STATE(220), - [sym_continue_statement] = STATE(220), - [sym_goto_statement] = STATE(220), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, [332] = { - [sym_compound_statement] = STATE(95), - [sym_labeled_statement] = STATE(95), - [sym_expression_statement] = STATE(95), - [sym_if_statement] = STATE(95), - [sym_switch_statement] = STATE(95), - [sym_case_statement] = STATE(95), - [sym_while_statement] = STATE(95), - [sym_do_statement] = STATE(95), - [sym_for_statement] = STATE(95), - [sym_return_statement] = STATE(95), - [sym_break_statement] = STATE(95), - [sym_continue_statement] = STATE(95), - [sym_goto_statement] = STATE(95), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, [333] = { - [sym_compound_statement] = STATE(1427), - [sym_labeled_statement] = STATE(1427), - [sym_expression_statement] = STATE(1427), - [sym_if_statement] = STATE(1427), - [sym_switch_statement] = STATE(1427), - [sym_case_statement] = STATE(1427), - [sym_while_statement] = STATE(1427), - [sym_do_statement] = STATE(1427), - [sym_for_statement] = STATE(1427), - [sym_return_statement] = STATE(1427), - [sym_break_statement] = STATE(1427), - [sym_continue_statement] = STATE(1427), - [sym_goto_statement] = STATE(1427), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, [334] = { - [sym_compound_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token2] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, [335] = { - [sym_attribute_declaration] = STATE(613), - [sym_compound_statement] = STATE(185), - [sym_labeled_statement] = STATE(185), - [sym_expression_statement] = STATE(185), - [sym_if_statement] = STATE(185), - [sym_switch_statement] = STATE(185), - [sym_while_statement] = STATE(185), - [sym_do_statement] = STATE(185), - [sym_for_statement] = STATE(185), - [sym_return_statement] = STATE(185), - [sym_break_statement] = STATE(185), - [sym_continue_statement] = STATE(185), - [sym_goto_statement] = STATE(185), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [aux_sym_attributed_declarator_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1142), - [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(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token2] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, [336] = { - [sym_compound_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_case_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, [337] = { - [sym_compound_statement] = STATE(232), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token2] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, [338] = { - [sym_compound_statement] = STATE(99), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token2] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), + [anon_sym___declspec] = ACTIONS(1044), + [anon_sym___cdecl] = ACTIONS(1044), + [anon_sym___clrcall] = ACTIONS(1044), + [anon_sym___stdcall] = ACTIONS(1044), + [anon_sym___fastcall] = ACTIONS(1044), + [anon_sym___thiscall] = ACTIONS(1044), + [anon_sym___vectorcall] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), [sym_comment] = ACTIONS(3), }, [339] = { - [sym_compound_statement] = STATE(223), - [sym_labeled_statement] = STATE(223), - [sym_expression_statement] = STATE(223), - [sym_if_statement] = STATE(223), - [sym_switch_statement] = STATE(223), - [sym_case_statement] = STATE(223), - [sym_while_statement] = STATE(223), - [sym_do_statement] = STATE(223), - [sym_for_statement] = STATE(223), - [sym_return_statement] = STATE(223), - [sym_break_statement] = STATE(223), - [sym_continue_statement] = STATE(223), - [sym_goto_statement] = STATE(223), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, [340] = { - [sym_compound_statement] = STATE(145), - [sym_labeled_statement] = STATE(145), - [sym_expression_statement] = STATE(145), - [sym_if_statement] = STATE(145), - [sym_switch_statement] = STATE(145), - [sym_case_statement] = STATE(145), - [sym_while_statement] = STATE(145), - [sym_do_statement] = STATE(145), - [sym_for_statement] = STATE(145), - [sym_return_statement] = STATE(145), - [sym_break_statement] = STATE(145), - [sym_continue_statement] = STATE(145), - [sym_goto_statement] = STATE(145), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, [341] = { - [sym_compound_statement] = STATE(221), - [sym_labeled_statement] = STATE(221), - [sym_expression_statement] = STATE(221), - [sym_if_statement] = STATE(221), - [sym_switch_statement] = STATE(221), - [sym_case_statement] = STATE(221), - [sym_while_statement] = STATE(221), - [sym_do_statement] = STATE(221), - [sym_for_statement] = STATE(221), - [sym_return_statement] = STATE(221), - [sym_break_statement] = STATE(221), - [sym_continue_statement] = STATE(221), - [sym_goto_statement] = STATE(221), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, [342] = { - [sym_compound_statement] = STATE(213), - [sym_labeled_statement] = STATE(213), - [sym_expression_statement] = STATE(213), - [sym_if_statement] = STATE(213), - [sym_switch_statement] = STATE(213), - [sym_case_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_do_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_return_statement] = STATE(213), - [sym_break_statement] = STATE(213), - [sym_continue_statement] = STATE(213), - [sym_goto_statement] = STATE(213), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), - [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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [343] = { - [sym_compound_statement] = STATE(146), - [sym_labeled_statement] = STATE(146), - [sym_expression_statement] = STATE(146), - [sym_if_statement] = STATE(146), - [sym_switch_statement] = STATE(146), - [sym_case_statement] = STATE(146), - [sym_while_statement] = STATE(146), - [sym_do_statement] = STATE(146), - [sym_for_statement] = STATE(146), - [sym_return_statement] = STATE(146), - [sym_break_statement] = STATE(146), - [sym_continue_statement] = STATE(146), - [sym_goto_statement] = STATE(146), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [ts_builtin_sym_end] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, [344] = { - [sym_compound_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__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, [345] = { - [sym_compound_statement] = STATE(214), - [sym_labeled_statement] = STATE(214), - [sym_expression_statement] = STATE(214), - [sym_if_statement] = STATE(214), - [sym_switch_statement] = STATE(214), - [sym_case_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_do_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_return_statement] = STATE(214), - [sym_break_statement] = STATE(214), - [sym_continue_statement] = STATE(214), - [sym_goto_statement] = STATE(214), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), - [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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, [346] = { - [sym_compound_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_case_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token2] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, [347] = { - [sym_compound_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), - [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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, [348] = { - [sym_compound_statement] = STATE(102), - [sym_labeled_statement] = STATE(102), - [sym_expression_statement] = STATE(102), - [sym_if_statement] = STATE(102), - [sym_switch_statement] = STATE(102), - [sym_case_statement] = STATE(102), - [sym_while_statement] = STATE(102), - [sym_do_statement] = STATE(102), - [sym_for_statement] = STATE(102), - [sym_return_statement] = STATE(102), - [sym_break_statement] = STATE(102), - [sym_continue_statement] = STATE(102), - [sym_goto_statement] = STATE(102), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, [349] = { - [sym_compound_statement] = STATE(103), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(103), - [sym_if_statement] = STATE(103), - [sym_switch_statement] = STATE(103), - [sym_case_statement] = STATE(103), - [sym_while_statement] = STATE(103), - [sym_do_statement] = STATE(103), - [sym_for_statement] = STATE(103), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(103), - [sym_continue_statement] = STATE(103), - [sym_goto_statement] = STATE(103), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token2] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, [350] = { - [sym_compound_statement] = STATE(101), - [sym_labeled_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_if_statement] = STATE(101), - [sym_switch_statement] = STATE(101), - [sym_case_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_break_statement] = STATE(101), - [sym_continue_statement] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, [351] = { - [sym_compound_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_case_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [352] = { - [sym_compound_statement] = STATE(173), - [sym_labeled_statement] = STATE(173), - [sym_expression_statement] = STATE(173), - [sym_if_statement] = STATE(173), - [sym_switch_statement] = STATE(173), - [sym_case_statement] = STATE(173), - [sym_while_statement] = STATE(173), - [sym_do_statement] = STATE(173), - [sym_for_statement] = STATE(173), - [sym_return_statement] = STATE(173), - [sym_break_statement] = STATE(173), - [sym_continue_statement] = STATE(173), - [sym_goto_statement] = STATE(173), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), - [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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token2] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, [353] = { - [sym_compound_statement] = STATE(218), - [sym_labeled_statement] = STATE(218), - [sym_expression_statement] = STATE(218), - [sym_if_statement] = STATE(218), - [sym_switch_statement] = STATE(218), - [sym_case_statement] = STATE(218), - [sym_while_statement] = STATE(218), - [sym_do_statement] = STATE(218), - [sym_for_statement] = STATE(218), - [sym_return_statement] = STATE(218), - [sym_break_statement] = STATE(218), - [sym_continue_statement] = STATE(218), - [sym_goto_statement] = STATE(218), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), - [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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, [354] = { - [sym_compound_statement] = STATE(170), - [sym_labeled_statement] = STATE(170), - [sym_expression_statement] = STATE(170), - [sym_if_statement] = STATE(170), - [sym_switch_statement] = STATE(170), - [sym_case_statement] = STATE(170), - [sym_while_statement] = STATE(170), - [sym_do_statement] = STATE(170), - [sym_for_statement] = STATE(170), - [sym_return_statement] = STATE(170), - [sym_break_statement] = STATE(170), - [sym_continue_statement] = STATE(170), - [sym_goto_statement] = STATE(170), - [sym__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), - [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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, [355] = { - [sym_compound_statement] = STATE(224), - [sym_labeled_statement] = STATE(224), - [sym_expression_statement] = STATE(224), - [sym_if_statement] = STATE(224), - [sym_switch_statement] = STATE(224), - [sym_case_statement] = STATE(224), - [sym_while_statement] = STATE(224), - [sym_do_statement] = STATE(224), - [sym_for_statement] = STATE(224), - [sym_return_statement] = STATE(224), - [sym_break_statement] = STATE(224), - [sym_continue_statement] = STATE(224), - [sym_goto_statement] = STATE(224), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, [356] = { - [sym_compound_statement] = STATE(234), - [sym_labeled_statement] = STATE(234), - [sym_expression_statement] = STATE(234), - [sym_if_statement] = STATE(234), - [sym_switch_statement] = STATE(234), - [sym_case_statement] = STATE(234), - [sym_while_statement] = STATE(234), - [sym_do_statement] = STATE(234), - [sym_for_statement] = STATE(234), - [sym_return_statement] = STATE(234), - [sym_break_statement] = STATE(234), - [sym_continue_statement] = STATE(234), - [sym_goto_statement] = STATE(234), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), [sym_comment] = ACTIONS(3), }, [357] = { - [sym_compound_statement] = STATE(147), - [sym_labeled_statement] = STATE(147), - [sym_expression_statement] = STATE(147), - [sym_if_statement] = STATE(147), - [sym_switch_statement] = STATE(147), - [sym_case_statement] = STATE(147), - [sym_while_statement] = STATE(147), - [sym_do_statement] = STATE(147), - [sym_for_statement] = STATE(147), - [sym_return_statement] = STATE(147), - [sym_break_statement] = STATE(147), - [sym_continue_statement] = STATE(147), - [sym_goto_statement] = STATE(147), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token2] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), [sym_comment] = ACTIONS(3), }, [358] = { - [sym_compound_statement] = STATE(148), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, [359] = { - [sym_compound_statement] = STATE(217), - [sym_labeled_statement] = STATE(217), - [sym_expression_statement] = STATE(217), - [sym_if_statement] = STATE(217), - [sym_switch_statement] = STATE(217), - [sym_case_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_do_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_return_statement] = STATE(217), - [sym_break_statement] = STATE(217), - [sym_continue_statement] = STATE(217), - [sym_goto_statement] = STATE(217), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, [360] = { - [sym_compound_statement] = STATE(150), - [sym_labeled_statement] = STATE(150), - [sym_expression_statement] = STATE(150), - [sym_if_statement] = STATE(150), - [sym_switch_statement] = STATE(150), - [sym_case_statement] = STATE(150), - [sym_while_statement] = STATE(150), - [sym_do_statement] = STATE(150), - [sym_for_statement] = STATE(150), - [sym_return_statement] = STATE(150), - [sym_break_statement] = STATE(150), - [sym_continue_statement] = STATE(150), - [sym_goto_statement] = STATE(150), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [361] = { - [sym_compound_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token2] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [361] = { + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), + [anon_sym___declspec] = ACTIONS(1044), + [anon_sym___cdecl] = ACTIONS(1044), + [anon_sym___clrcall] = ACTIONS(1044), + [anon_sym___stdcall] = ACTIONS(1044), + [anon_sym___fastcall] = ACTIONS(1044), + [anon_sym___thiscall] = ACTIONS(1044), + [anon_sym___vectorcall] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), [sym_comment] = ACTIONS(3), }, [362] = { - [sym_compound_statement] = STATE(222), - [sym_labeled_statement] = STATE(222), - [sym_expression_statement] = STATE(222), - [sym_if_statement] = STATE(222), - [sym_switch_statement] = STATE(222), - [sym_case_statement] = STATE(222), - [sym_while_statement] = STATE(222), - [sym_do_statement] = STATE(222), - [sym_for_statement] = STATE(222), - [sym_return_statement] = STATE(222), - [sym_break_statement] = STATE(222), - [sym_continue_statement] = STATE(222), - [sym_goto_statement] = STATE(222), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token2] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, [363] = { - [sym_compound_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__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, [364] = { - [sym_compound_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__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, [365] = { - [sym_attribute_declaration] = STATE(613), - [sym_compound_statement] = STATE(191), - [sym_labeled_statement] = STATE(191), - [sym_expression_statement] = STATE(191), - [sym_if_statement] = STATE(191), - [sym_switch_statement] = STATE(191), - [sym_while_statement] = STATE(191), - [sym_do_statement] = STATE(191), - [sym_for_statement] = STATE(191), - [sym_return_statement] = STATE(191), - [sym_break_statement] = STATE(191), - [sym_continue_statement] = STATE(191), - [sym_goto_statement] = STATE(191), - [sym__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [aux_sym_attributed_declarator_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, [366] = { - [sym_attribute_declaration] = STATE(613), - [sym_compound_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [aux_sym_attributed_declarator_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, [367] = { - [sym_compound_statement] = STATE(83), - [sym_labeled_statement] = STATE(83), - [sym_expression_statement] = STATE(83), - [sym_if_statement] = STATE(83), - [sym_switch_statement] = STATE(83), - [sym_case_statement] = STATE(83), - [sym_while_statement] = STATE(83), - [sym_do_statement] = STATE(83), - [sym_for_statement] = STATE(83), - [sym_return_statement] = STATE(83), - [sym_break_statement] = STATE(83), - [sym_continue_statement] = STATE(83), - [sym_goto_statement] = STATE(83), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, [368] = { - [sym_compound_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_case_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__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token2] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, [369] = { - [sym_compound_statement] = STATE(152), - [sym_labeled_statement] = STATE(152), - [sym_expression_statement] = STATE(152), - [sym_if_statement] = STATE(152), - [sym_switch_statement] = STATE(152), - [sym_case_statement] = STATE(152), - [sym_while_statement] = STATE(152), - [sym_do_statement] = STATE(152), - [sym_for_statement] = STATE(152), - [sym_return_statement] = STATE(152), - [sym_break_statement] = STATE(152), - [sym_continue_statement] = STATE(152), - [sym_goto_statement] = STATE(152), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, [370] = { - [sym_compound_statement] = STATE(154), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token2] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, [371] = { - [sym_compound_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__expression] = STATE(700), - [sym_comma_expression] = STATE(1281), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1138), - [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(367), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token2] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, [372] = { - [sym_compound_statement] = STATE(129), - [sym_labeled_statement] = STATE(129), - [sym_expression_statement] = STATE(129), - [sym_if_statement] = STATE(129), - [sym_switch_statement] = STATE(129), - [sym_case_statement] = STATE(129), - [sym_while_statement] = STATE(129), - [sym_do_statement] = STATE(129), - [sym_for_statement] = STATE(129), - [sym_return_statement] = STATE(129), - [sym_break_statement] = STATE(129), - [sym_continue_statement] = STATE(129), - [sym_goto_statement] = STATE(129), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token2] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, [373] = { - [sym_compound_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__expression] = STATE(698), - [sym_comma_expression] = STATE(1389), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1142), - [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(313), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [374] = { - [sym_compound_statement] = STATE(128), - [sym_labeled_statement] = STATE(128), - [sym_expression_statement] = STATE(128), - [sym_if_statement] = STATE(128), - [sym_switch_statement] = STATE(128), - [sym_case_statement] = STATE(128), - [sym_while_statement] = STATE(128), - [sym_do_statement] = STATE(128), - [sym_for_statement] = STATE(128), - [sym_return_statement] = STATE(128), - [sym_break_statement] = STATE(128), - [sym_continue_statement] = STATE(128), - [sym_goto_statement] = STATE(128), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [375] = { - [sym_compound_statement] = STATE(87), - [sym_labeled_statement] = STATE(87), - [sym_expression_statement] = STATE(87), - [sym_if_statement] = STATE(87), - [sym_switch_statement] = STATE(87), - [sym_case_statement] = STATE(87), - [sym_while_statement] = STATE(87), - [sym_do_statement] = STATE(87), - [sym_for_statement] = STATE(87), - [sym_return_statement] = STATE(87), - [sym_break_statement] = STATE(87), - [sym_continue_statement] = STATE(87), - [sym_goto_statement] = STATE(87), - [sym__expression] = STATE(740), - [sym_comma_expression] = STATE(1380), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1140), - [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(109), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [376] = { - [sym_compound_statement] = STATE(157), - [sym_labeled_statement] = STATE(157), - [sym_expression_statement] = STATE(157), - [sym_if_statement] = STATE(157), - [sym_switch_statement] = STATE(157), - [sym_case_statement] = STATE(157), - [sym_while_statement] = STATE(157), - [sym_do_statement] = STATE(157), - [sym_for_statement] = STATE(157), - [sym_return_statement] = STATE(157), - [sym_break_statement] = STATE(157), - [sym_continue_statement] = STATE(157), - [sym_goto_statement] = STATE(157), - [sym__expression] = STATE(701), - [sym_comma_expression] = STATE(1431), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1134), - [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(27), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [377] = { - [sym__expression] = STATE(607), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_initializer_list] = STATE(608), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_identifier] = ACTIONS(1144), + [sym__expression] = STATE(533), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_initializer_list] = STATE(532), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_identifier] = ACTIONS(1341), [anon_sym_COMMA] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(872), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39003,36 +38981,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_type_qualifier] = STATE(860), - [sym__type_specifier] = STATE(997), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1423), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_type_descriptor] = STATE(1425), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_type_definition_repeat1] = STATE(860), - [aux_sym_sized_type_specifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(1146), + [374] = { + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1418), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_type_descriptor] = STATE(1393), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_type_definition_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39044,10 +39022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -39071,36 +39049,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_type_qualifier] = STATE(860), - [sym__type_specifier] = STATE(997), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1423), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_type_descriptor] = STATE(1347), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_type_definition_repeat1] = STATE(860), - [aux_sym_sized_type_specifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(1146), + [375] = { + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1418), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_type_descriptor] = STATE(1360), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_type_definition_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39112,10 +39090,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -39139,36 +39117,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_type_qualifier] = STATE(860), - [sym__type_specifier] = STATE(997), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1423), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_type_descriptor] = STATE(1348), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_type_definition_repeat1] = STATE(860), - [aux_sym_sized_type_specifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(1146), + [376] = { + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1418), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_type_descriptor] = STATE(1275), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_type_definition_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39180,10 +39158,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -39207,36 +39185,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_type_qualifier] = STATE(860), - [sym__type_specifier] = STATE(997), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1423), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_type_descriptor] = STATE(1365), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_type_definition_repeat1] = STATE(860), - [aux_sym_sized_type_specifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(1146), + [377] = { + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1418), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_type_descriptor] = STATE(1420), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_type_definition_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39248,10 +39226,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -39275,36 +39253,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_type_qualifier] = STATE(860), - [sym__type_specifier] = STATE(997), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1423), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_type_descriptor] = STATE(1422), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_type_definition_repeat1] = STATE(860), - [aux_sym_sized_type_specifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(1146), + [378] = { + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1418), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_type_descriptor] = STATE(1417), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_type_definition_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39316,10 +39294,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -39343,36 +39321,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_type_qualifier] = STATE(860), - [sym__type_specifier] = STATE(997), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1423), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_type_descriptor] = STATE(1375), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_type_definition_repeat1] = STATE(860), - [aux_sym_sized_type_specifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(1146), + [379] = { + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1418), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_type_descriptor] = STATE(1335), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_type_definition_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39384,10 +39362,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -39411,36 +39389,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_type_qualifier] = STATE(860), - [sym__type_specifier] = STATE(997), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1423), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_type_descriptor] = STATE(1398), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_type_definition_repeat1] = STATE(860), - [aux_sym_sized_type_specifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(1146), + [380] = { + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1418), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_type_descriptor] = STATE(1343), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_type_definition_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39452,10 +39430,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -39479,36 +39457,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_type_qualifier] = STATE(860), - [sym__type_specifier] = STATE(997), - [sym_sized_type_specifier] = STATE(881), - [sym_enum_specifier] = STATE(881), - [sym_struct_specifier] = STATE(881), - [sym_union_specifier] = STATE(881), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1423), - [sym_conditional_expression] = STATE(549), - [sym_assignment_expression] = STATE(549), - [sym_pointer_expression] = STATE(614), - [sym_unary_expression] = STATE(549), - [sym_binary_expression] = STATE(549), - [sym_update_expression] = STATE(549), - [sym_cast_expression] = STATE(549), - [sym_type_descriptor] = STATE(1419), - [sym_sizeof_expression] = STATE(549), - [sym_subscript_expression] = STATE(614), - [sym_call_expression] = STATE(614), - [sym_field_expression] = STATE(614), - [sym_compound_literal_expression] = STATE(549), - [sym_parenthesized_expression] = STATE(614), - [sym_char_literal] = STATE(549), - [sym_concatenated_string] = STATE(549), - [sym_string_literal] = STATE(436), - [sym_macro_type_specifier] = STATE(881), - [aux_sym_type_definition_repeat1] = STATE(860), - [aux_sym_sized_type_specifier_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(1146), + [381] = { + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(882), + [sym_enum_specifier] = STATE(882), + [sym_struct_specifier] = STATE(882), + [sym_union_specifier] = STATE(882), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1418), + [sym_conditional_expression] = STATE(589), + [sym_assignment_expression] = STATE(589), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(589), + [sym_binary_expression] = STATE(589), + [sym_update_expression] = STATE(589), + [sym_cast_expression] = STATE(589), + [sym_type_descriptor] = STATE(1429), + [sym_sizeof_expression] = STATE(589), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(589), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(589), + [sym_concatenated_string] = STATE(589), + [sym_string_literal] = STATE(430), + [sym_macro_type_specifier] = STATE(882), + [aux_sym_type_definition_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39520,10 +39498,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_volatile] = ACTIONS(45), [anon_sym_restrict] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -39550,10 +39528,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1094), 1, + anon_sym_AMP, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1349), 1, + anon_sym_LPAREN2, + ACTIONS(1353), 1, + anon_sym_TILDE, + ACTIONS(1355), 1, + anon_sym_STAR, + ACTIONS(1359), 1, + anon_sym_sizeof, + STATE(430), 1, + sym_string_literal, + STATE(532), 1, + sym_initializer_list, + STATE(620), 1, + sym__expression, + ACTIONS(1357), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1351), 3, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(882), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + STATE(638), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + ACTIONS(872), 14, + 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_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + [107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 25, + ACTIONS(1363), 25, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -39579,7 +39643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1150), 38, + ACTIONS(1361), 38, anon_sym_DASH, anon_sym_PLUS, anon_sym_extern, @@ -39618,10 +39682,10 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - [71] = 3, + [178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 25, + ACTIONS(1367), 25, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -39647,7 +39711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1154), 38, + ACTIONS(1365), 38, anon_sym_DASH, anon_sym_PLUS, anon_sym_extern, @@ -39686,100 +39750,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - [142] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1094), 1, - anon_sym_AMP, - ACTIONS(1158), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1164), 1, - anon_sym_TILDE, - ACTIONS(1166), 1, - anon_sym_STAR, - ACTIONS(1170), 1, - anon_sym_sizeof, - STATE(436), 1, - sym_string_literal, - STATE(608), 1, - sym_initializer_list, - STATE(634), 1, - sym__expression, - ACTIONS(1168), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1162), 3, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(882), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - STATE(643), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - ACTIONS(872), 14, - 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_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, [249] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(1369), 1, sym_identifier, - ACTIONS(1181), 1, + ACTIONS(1378), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1177), 17, + ACTIONS(1374), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -39797,7 +39775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_null, - ACTIONS(1179), 19, + ACTIONS(1376), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -39817,7 +39795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - ACTIONS(1175), 20, + ACTIONS(1372), 20, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -39855,35 +39833,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1184), 1, + ACTIONS(1381), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(1383), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1188), 1, + ACTIONS(1385), 1, anon_sym_RPAREN, - ACTIONS(1190), 1, + ACTIONS(1387), 1, anon_sym_LPAREN2, - ACTIONS(1192), 1, + ACTIONS(1389), 1, anon_sym_STAR, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1196), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(935), 1, + STATE(927), 1, sym__declaration_specifiers, - STATE(1091), 1, + STATE(1092), 1, sym__declarator, - STATE(1143), 1, - sym_parameter_list, - STATE(1149), 1, + STATE(1138), 1, sym__abstract_declarator, - STATE(1403), 1, + STATE(1142), 1, + sym_parameter_list, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1173), 2, + STATE(1208), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(45), 4, @@ -39896,7 +39874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1141), 4, + STATE(1143), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -39907,19 +39885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -39944,30 +39922,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1204), 1, + ACTIONS(1401), 1, aux_sym_preproc_if_token2, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1452), 2, + STATE(1330), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -39986,13 +39964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40000,7 +39978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(395), 8, + STATE(409), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40026,30 +40004,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1214), 1, + ACTIONS(1411), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1359), 2, + STATE(1394), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40068,13 +40046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40082,7 +40060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(415), 8, + STATE(409), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40108,30 +40086,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1216), 1, + ACTIONS(1413), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1335), 2, + STATE(1346), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40150,13 +40128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40164,7 +40142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(403), 8, + STATE(388), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40190,30 +40168,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1218), 1, + ACTIONS(1415), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1411), 2, + STATE(1304), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40232,13 +40210,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40246,7 +40224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(415), 8, + STATE(409), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40272,30 +40250,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1220), 1, + ACTIONS(1417), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, + sym__declaration_specifiers, + ACTIONS(1403), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1301), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(882), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(645), 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(399), 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, + [980] = 26, + 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(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1397), 1, + aux_sym_preproc_def_token1, + ACTIONS(1399), 1, + aux_sym_preproc_if_token1, + ACTIONS(1405), 1, + aux_sym_preproc_else_token1, + ACTIONS(1407), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1409), 1, + sym_preproc_directive, + ACTIONS(1419), 1, + aux_sym_preproc_if_token2, + STATE(703), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(997), 1, + sym__declaration_specifiers, + ACTIONS(1403), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1344), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(882), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(645), 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(409), 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, + [1088] = 26, + 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(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1397), 1, + aux_sym_preproc_def_token1, + ACTIONS(1399), 1, + aux_sym_preproc_if_token1, + ACTIONS(1405), 1, + aux_sym_preproc_else_token1, + ACTIONS(1407), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1409), 1, + sym_preproc_directive, + ACTIONS(1421), 1, + aux_sym_preproc_if_token2, + STATE(703), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1426), 2, + STATE(1345), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40314,13 +40456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40328,7 +40470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(415), 8, + STATE(387), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40337,7 +40479,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, - [980] = 26, + [1196] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40354,30 +40496,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1222), 1, + ACTIONS(1423), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1290), 2, + STATE(1364), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40396,13 +40538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40410,7 +40552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(400), 8, + STATE(392), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40419,7 +40561,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, - [1088] = 26, + [1304] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40436,30 +40578,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1224), 1, + ACTIONS(1425), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1326), 2, + STATE(1415), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40478,13 +40620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40492,7 +40634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(404), 8, + STATE(397), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40501,7 +40643,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, - [1196] = 26, + [1412] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40518,30 +40660,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1226), 1, + ACTIONS(1427), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1356), 2, + STATE(1406), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40560,13 +40702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40574,7 +40716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(392), 8, + STATE(398), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40583,7 +40725,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, - [1304] = 26, + [1520] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40600,30 +40742,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1228), 1, + ACTIONS(1429), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1279), 2, + STATE(1338), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40642,13 +40784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40656,7 +40798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(415), 8, + STATE(409), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40665,7 +40807,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, - [1412] = 26, + [1628] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40682,30 +40824,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1230), 1, + ACTIONS(1431), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1327), 2, + STATE(1416), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40724,13 +40866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40738,7 +40880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(415), 8, + STATE(409), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40747,7 +40889,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, - [1520] = 26, + [1736] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40764,30 +40906,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1232), 1, + ACTIONS(1433), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1325), 2, + STATE(1352), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40806,13 +40948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40820,7 +40962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(399), 8, + STATE(409), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40829,7 +40971,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, - [1628] = 26, + [1844] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -40846,30 +40988,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1200), 1, + ACTIONS(1397), 1, aux_sym_preproc_def_token1, - ACTIONS(1202), 1, + ACTIONS(1399), 1, aux_sym_preproc_if_token1, - ACTIONS(1208), 1, + ACTIONS(1405), 1, aux_sym_preproc_else_token1, - ACTIONS(1210), 1, + ACTIONS(1407), 1, aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, + ACTIONS(1409), 1, sym_preproc_directive, - ACTIONS(1234), 1, + ACTIONS(1435), 1, aux_sym_preproc_if_token2, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(997), 1, sym__declaration_specifiers, - ACTIONS(1206), 2, + ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1428), 2, + STATE(1342), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40888,13 +41030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -40902,7 +41044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(394), 8, + STATE(390), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40911,184 +41053,86 @@ 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, - [1736] = 26, + [1952] = 11, 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(862), 1, + ACTIONS(1441), 1, + anon_sym_LPAREN2, + ACTIONS(1447), 1, + anon_sym_STAR, + ACTIONS(1450), 1, + anon_sym_SEMI, + ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, - sym_identifier, - ACTIONS(1200), 1, - aux_sym_preproc_def_token1, - ACTIONS(1202), 1, - aux_sym_preproc_if_token1, - ACTIONS(1208), 1, - aux_sym_preproc_else_token1, - ACTIONS(1210), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, - sym_preproc_directive, - ACTIONS(1236), 1, - aux_sym_preproc_if_token2, - STATE(696), 1, - sym__type_specifier, - STATE(775), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, - sym__declaration_specifiers, - ACTIONS(1206), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1324), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, + ACTIONS(1455), 1, + anon_sym_EQ, + ACTIONS(1457), 1, + anon_sym_COLON, + ACTIONS(1459), 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(1439), 12, + anon_sym_COMMA, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1445), 12, + anon_sym_DASH, + anon_sym_PLUS, + 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_LBRACK, + ACTIONS(1437), 13, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(650), 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(415), 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, - [1844] = 26, - 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(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, - sym_identifier, - ACTIONS(1200), 1, - aux_sym_preproc_def_token1, - ACTIONS(1202), 1, - aux_sym_preproc_if_token1, - ACTIONS(1208), 1, - aux_sym_preproc_else_token1, - ACTIONS(1210), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1212), 1, - sym_preproc_directive, - ACTIONS(1238), 1, - aux_sym_preproc_if_token2, - STATE(696), 1, - sym__type_specifier, - STATE(775), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, - sym__declaration_specifiers, - ACTIONS(1206), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1349), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(881), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(650), 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(415), 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, - [1952] = 10, + sym_identifier, + [2029] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1441), 1, anon_sym_LPAREN2, - ACTIONS(1250), 1, + ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1253), 1, + ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1257), 1, + ACTIONS(1461), 1, anon_sym_COLON, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41099,7 +41143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -41112,7 +41156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1240), 13, + ACTIONS(1437), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -41126,7 +41170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1242), 13, + ACTIONS(1439), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41140,22 +41184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2027] = 11, + [2104] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1441), 1, anon_sym_LPAREN2, - ACTIONS(1250), 1, + ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1253), 1, + ACTIONS(1450), 1, + anon_sym_SEMI, + ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1257), 1, + ACTIONS(1463), 1, anon_sym_COLON, - ACTIONS(1261), 1, - anon_sym_SEMI, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41166,7 +41210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1242), 12, + ACTIONS(1439), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41179,7 +41223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -41192,7 +41236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1240), 13, + ACTIONS(1437), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -41206,20 +41250,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [2104] = 10, + [2181] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1441), 1, anon_sym_LPAREN2, - ACTIONS(1250), 1, + ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1253), 1, + ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1264), 1, + ACTIONS(1463), 1, anon_sym_COLON, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41230,7 +41274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -41243,7 +41287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1240), 13, + ACTIONS(1437), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -41257,7 +41301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1242), 13, + ACTIONS(1439), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41271,20 +41315,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2179] = 10, + [2256] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1441), 1, anon_sym_LPAREN2, - ACTIONS(1250), 1, + ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1253), 1, + ACTIONS(1450), 1, + anon_sym_SEMI, + ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1266), 1, + ACTIONS(1465), 1, anon_sym_COLON, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41295,7 +41341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1439), 12, + anon_sym_COMMA, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -41308,7 +41367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1240), 13, + ACTIONS(1437), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -41322,34 +41381,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1242), 13, - anon_sym_COMMA, - 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_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [2254] = 10, + [2333] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1441), 1, anon_sym_LPAREN2, - ACTIONS(1250), 1, + ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1253), 1, + ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1268), 1, + ACTIONS(1457), 1, anon_sym_COLON, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41360,7 +41405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -41373,7 +41418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1240), 13, + ACTIONS(1437), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -41387,7 +41432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1242), 13, + ACTIONS(1439), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41401,22 +41446,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2329] = 11, + [2408] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1441), 1, anon_sym_LPAREN2, - ACTIONS(1250), 1, + ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1253), 1, + ACTIONS(1450), 1, + anon_sym_SEMI, + ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1261), 1, - anon_sym_SEMI, - ACTIONS(1268), 1, + ACTIONS(1461), 1, anon_sym_COLON, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41427,7 +41472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1242), 12, + ACTIONS(1439), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41440,7 +41485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -41453,7 +41498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1240), 13, + ACTIONS(1437), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -41467,22 +41512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [2406] = 11, + [2485] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1441), 1, anon_sym_LPAREN2, - ACTIONS(1250), 1, + ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1253), 1, + ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1261), 1, - anon_sym_SEMI, - ACTIONS(1264), 1, + ACTIONS(1465), 1, anon_sym_COLON, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41493,20 +41536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1242), 12, - anon_sym_COMMA, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -41519,7 +41549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1240), 13, + ACTIONS(1437), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -41533,33 +41563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [2483] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 1, - anon_sym_LPAREN2, - ACTIONS(1250), 1, - anon_sym_STAR, - ACTIONS(1253), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 1, - anon_sym_EQ, - ACTIONS(1261), 1, - anon_sym_SEMI, - ACTIONS(1266), 1, - anon_sym_COLON, - ACTIONS(1259), 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(1242), 12, + ACTIONS(1439), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41567,39 +41571,90 @@ 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_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1248), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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_LBRACK, - ACTIONS(1240), 13, - anon_sym_extern, + [2560] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_identifier, + ACTIONS(1470), 1, + aux_sym_preproc_def_token1, + ACTIONS(1473), 1, + aux_sym_preproc_if_token1, + ACTIONS(1481), 1, + sym_preproc_directive, + ACTIONS(1487), 1, anon_sym___attribute__, + ACTIONS(1490), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1493), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1502), 1, + sym_primitive_type, + ACTIONS(1505), 1, + anon_sym_enum, + ACTIONS(1508), 1, + anon_sym_struct, + ACTIONS(1511), 1, + anon_sym_union, + STATE(703), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(997), 1, + sym__declaration_specifiers, + ACTIONS(1478), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1476), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(1496), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - sym_identifier, - [2560] = 23, + ACTIONS(1499), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1484), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(882), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(645), 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(409), 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, + [2660] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -41610,19 +41665,19 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(884), 1, anon_sym_LBRACE, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1514), 1, anon_sym_COMMA, - ACTIONS(1272), 1, + ACTIONS(1516), 1, anon_sym_RBRACE, - ACTIONS(1274), 1, + ACTIONS(1518), 1, anon_sym_LBRACK, - ACTIONS(1276), 1, + ACTIONS(1520), 1, anon_sym_DOT, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(688), 1, + STATE(669), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -41636,14 +41691,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1203), 2, + STATE(1206), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1105), 3, + STATE(1099), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -41659,13 +41714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -41676,18 +41731,18 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2660] = 9, + [2760] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1441), 1, anon_sym_LPAREN2, - ACTIONS(1250), 1, + ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1253), 1, + ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41698,7 +41753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -41711,7 +41766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1240), 13, + ACTIONS(1437), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -41725,7 +41780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1242), 13, + ACTIONS(1439), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41739,84 +41794,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2732] = 23, + [2832] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_preproc_def_token1, - ACTIONS(1284), 1, - aux_sym_preproc_if_token1, - ACTIONS(1292), 1, - sym_preproc_directive, - ACTIONS(1298), 1, - anon_sym___attribute__, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1304), 1, - anon_sym___declspec, - ACTIONS(1313), 1, - sym_primitive_type, - ACTIONS(1316), 1, - anon_sym_enum, - ACTIONS(1319), 1, - anon_sym_struct, - ACTIONS(1322), 1, - anon_sym_union, + ACTIONS(1518), 1, + anon_sym_LBRACK, + ACTIONS(1520), 1, + anon_sym_DOT, + ACTIONS(1522), 1, + anon_sym_RBRACE, + STATE(430), 1, + sym_string_literal, STATE(696), 1, - sym__type_specifier, - STATE(775), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, - sym__declaration_specifiers, - ACTIONS(1289), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1287), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(1307), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1310), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1295), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(881), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(650), 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(415), 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, - [2832] = 22, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(1227), 2, + sym_initializer_list, + sym_initializer_pair, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + STATE(1099), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(609), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [2929] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -41827,17 +41880,17 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(884), 1, anon_sym_LBRACE, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1518), 1, anon_sym_LBRACK, - ACTIONS(1276), 1, + ACTIONS(1520), 1, anon_sym_DOT, - ACTIONS(1325), 1, + ACTIONS(1524), 1, anon_sym_RBRACE, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(706), 1, + STATE(696), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -41851,14 +41904,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1216), 2, + STATE(1227), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1105), 3, + STATE(1099), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -41874,13 +41927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -41891,7 +41944,82 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2929] = 22, + [3026] = 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(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1526), 1, + aux_sym_preproc_def_token1, + ACTIONS(1528), 1, + aux_sym_preproc_if_token1, + ACTIONS(1532), 1, + sym_preproc_directive, + ACTIONS(1534), 1, + anon_sym_RBRACE, + STATE(703), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(996), 1, + sym__declaration_specifiers, + ACTIONS(1530), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(882), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(645), 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(419), 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, + [3124] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -41902,17 +42030,15 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(884), 1, anon_sym_LBRACE, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1518), 1, anon_sym_LBRACK, - ACTIONS(1276), 1, + ACTIONS(1520), 1, anon_sym_DOT, - ACTIONS(1327), 1, - anon_sym_RBRACE, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(706), 1, + STATE(696), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -41926,14 +42052,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1216), 2, + STATE(1227), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1105), 3, + STATE(1099), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -41949,13 +42075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -41966,65 +42092,65 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3026] = 23, + [3218] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1467), 1, + sym_identifier, + ACTIONS(1487), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1490), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1493), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1502), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1505), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1508), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1511), 1, anon_sym_union, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1536), 1, aux_sym_preproc_def_token1, - ACTIONS(1331), 1, + ACTIONS(1539), 1, aux_sym_preproc_if_token1, - ACTIONS(1335), 1, + ACTIONS(1545), 1, sym_preproc_directive, - ACTIONS(1337), 1, + ACTIONS(1548), 1, anon_sym_RBRACE, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(996), 1, sym__declaration_specifiers, - ACTIONS(1333), 2, + ACTIONS(1542), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + ACTIONS(1496), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, + ACTIONS(1499), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + ACTIONS(1484), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42032,7 +42158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(416), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42041,7 +42167,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, - [3124] = 23, + [3316] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -42058,23 +42184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1550), 1, aux_sym_preproc_def_token1, - ACTIONS(1331), 1, + ACTIONS(1552), 1, aux_sym_preproc_if_token1, - ACTIONS(1335), 1, + ACTIONS(1554), 1, + aux_sym_preproc_if_token2, + ACTIONS(1558), 1, sym_preproc_directive, - ACTIONS(1339), 1, - anon_sym_RBRACE, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(995), 1, sym__declaration_specifiers, - ACTIONS(1333), 2, + ACTIONS(1556), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, @@ -42093,13 +42219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42116,7 +42242,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, - [3222] = 23, + [3414] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -42133,23 +42259,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1341), 1, + ACTIONS(1550), 1, aux_sym_preproc_def_token1, - ACTIONS(1343), 1, + ACTIONS(1552), 1, aux_sym_preproc_if_token1, - ACTIONS(1345), 1, - aux_sym_preproc_if_token2, - ACTIONS(1349), 1, + ACTIONS(1558), 1, sym_preproc_directive, - STATE(696), 1, + ACTIONS(1560), 1, + aux_sym_preproc_if_token2, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1000), 1, + STATE(995), 1, sym__declaration_specifiers, - ACTIONS(1347), 2, + ACTIONS(1556), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, @@ -42168,13 +42294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42182,7 +42308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(422), 8, + STATE(420), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42191,138 +42317,65 @@ 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, - [3320] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1144), 1, - sym_identifier, - ACTIONS(1274), 1, - anon_sym_LBRACK, - ACTIONS(1276), 1, - anon_sym_DOT, - STATE(436), 1, - sym_string_literal, - STATE(706), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(1216), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - STATE(1105), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(614), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [3414] = 23, + [3512] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, - sym_identifier, - ACTIONS(1287), 1, - aux_sym_preproc_if_token2, - ACTIONS(1298), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1304), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1313), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1316), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1319), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1322), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1351), 1, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1526), 1, aux_sym_preproc_def_token1, - ACTIONS(1354), 1, + ACTIONS(1528), 1, aux_sym_preproc_if_token1, - ACTIONS(1360), 1, + ACTIONS(1532), 1, sym_preproc_directive, - STATE(696), 1, + ACTIONS(1562), 1, + anon_sym_RBRACE, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1000), 1, + STATE(996), 1, sym__declaration_specifiers, - ACTIONS(1357), 2, + ACTIONS(1530), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1307), 4, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1310), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1295), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42330,7 +42383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(422), 8, + STATE(416), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42339,65 +42392,65 @@ 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, - [3512] = 23, + [3610] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1467), 1, sym_identifier, - ACTIONS(1298), 1, + ACTIONS(1476), 1, + aux_sym_preproc_if_token2, + ACTIONS(1487), 1, anon_sym___attribute__, - ACTIONS(1301), 1, + ACTIONS(1490), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1304), 1, + ACTIONS(1493), 1, anon_sym___declspec, - ACTIONS(1313), 1, + ACTIONS(1502), 1, sym_primitive_type, - ACTIONS(1316), 1, + ACTIONS(1505), 1, anon_sym_enum, - ACTIONS(1319), 1, + ACTIONS(1508), 1, anon_sym_struct, - ACTIONS(1322), 1, + ACTIONS(1511), 1, anon_sym_union, - ACTIONS(1363), 1, + ACTIONS(1564), 1, aux_sym_preproc_def_token1, - ACTIONS(1366), 1, + ACTIONS(1567), 1, aux_sym_preproc_if_token1, - ACTIONS(1372), 1, + ACTIONS(1573), 1, sym_preproc_directive, - ACTIONS(1375), 1, - anon_sym_RBRACE, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1002), 1, + STATE(995), 1, sym__declaration_specifiers, - ACTIONS(1369), 2, + ACTIONS(1570), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1307), 4, + ACTIONS(1496), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1310), 4, + ACTIONS(1499), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1295), 5, + ACTIONS(1484), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42405,7 +42458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(423), 8, + STATE(420), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42414,109 +42467,161 @@ 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, - [3610] = 23, + [3708] = 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(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1341), 1, - aux_sym_preproc_def_token1, - ACTIONS(1343), 1, - aux_sym_preproc_if_token1, ACTIONS(1349), 1, - sym_preproc_directive, - ACTIONS(1377), 1, - aux_sym_preproc_if_token2, - STATE(696), 1, - sym__type_specifier, - STATE(775), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1000), 1, - sym__declaration_specifiers, - ACTIONS(1347), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + anon_sym_LPAREN2, + ACTIONS(1355), 1, + anon_sym_AMP, + ACTIONS(1359), 1, + anon_sym_sizeof, + ACTIONS(1576), 1, + anon_sym_STAR, + ACTIONS(1578), 1, + anon_sym_RBRACK, + STATE(430), 1, + sym_string_literal, + STATE(814), 1, + sym__expression, + ACTIONS(1351), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1353), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1357), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(431), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1580), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(881), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(650), 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(420), 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, - [3708] = 20, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(638), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [3799] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(434), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1584), 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(1582), 29, + 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_DOT, + anon_sym_DASH_GT, + [3860] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1355), 1, anon_sym_AMP, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - ACTIONS(1379), 1, + ACTIONS(1586), 1, anon_sym_STAR, - ACTIONS(1381), 1, + ACTIONS(1588), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(745), 1, + STATE(784), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, STATE(433), 2, @@ -42526,7 +42631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_null, - ACTIONS(1383), 4, + ACTIONS(1580), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -42543,13 +42648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42560,7 +42665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3799] = 26, + [3951] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -42577,29 +42682,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1186), 1, + ACTIONS(1383), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1188), 1, + ACTIONS(1385), 1, anon_sym_RPAREN, - ACTIONS(1196), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1385), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1387), 1, + ACTIONS(1592), 1, anon_sym_STAR, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(935), 1, + STATE(927), 1, sym__declaration_specifiers, - STATE(1143), 1, - sym_parameter_list, - STATE(1149), 1, + STATE(1138), 1, sym__abstract_declarator, - STATE(1173), 2, + STATE(1142), 1, + sym_parameter_list, + STATE(1208), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(45), 4, @@ -42612,7 +42717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1141), 4, + STATE(1143), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -42623,13 +42728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -42637,115 +42742,44 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [3902] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1158), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_AMP, - ACTIONS(1170), 1, - anon_sym_sizeof, - ACTIONS(1389), 1, - anon_sym_STAR, - ACTIONS(1391), 1, - anon_sym_RBRACK, - STATE(436), 1, - sym_string_literal, - STATE(749), 1, - sym__expression, - ACTIONS(1162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1164), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1168), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(652), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1383), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(643), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [3993] = 20, + [4054] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1355), 1, anon_sym_AMP, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - ACTIONS(1393), 1, + ACTIONS(1594), 1, anon_sym_STAR, - ACTIONS(1395), 1, + ACTIONS(1596), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(771), 1, + STATE(800), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(437), 2, + STATE(427), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1383), 4, + ACTIONS(1580), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -42762,13 +42796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42779,44 +42813,44 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4084] = 20, + [4145] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1355), 1, anon_sym_AMP, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - ACTIONS(1397), 1, + ACTIONS(1598), 1, anon_sym_STAR, - ACTIONS(1399), 1, + ACTIONS(1600), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(791), 1, + STATE(794), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(427), 2, + STATE(432), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1383), 4, + ACTIONS(1580), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -42833,13 +42867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42850,44 +42884,44 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4175] = 20, + [4236] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1355), 1, anon_sym_AMP, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - ACTIONS(1401), 1, + ACTIONS(1602), 1, anon_sym_STAR, - ACTIONS(1403), 1, + ACTIONS(1604), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(776), 1, + STATE(796), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(652), 2, + STATE(647), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1383), 4, + ACTIONS(1580), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -42904,13 +42938,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42921,100 +42955,44 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4266] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(435), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1407), 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(1405), 29, - 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_DOT, - anon_sym_DASH_GT, [4327] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1355), 1, anon_sym_AMP, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - ACTIONS(1409), 1, + ACTIONS(1606), 1, anon_sym_STAR, - ACTIONS(1411), 1, + ACTIONS(1608), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(760), 1, + STATE(751), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(652), 2, + STATE(429), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1383), 4, + ACTIONS(1580), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -43031,13 +43009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43053,110 +43031,39 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1166), 1, - anon_sym_AMP, - ACTIONS(1170), 1, - anon_sym_sizeof, - ACTIONS(1413), 1, - anon_sym_STAR, - ACTIONS(1415), 1, - anon_sym_RBRACK, - STATE(436), 1, - sym_string_literal, - STATE(746), 1, - sym__expression, - ACTIONS(1162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1164), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1168), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(652), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1383), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(643), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4509] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1158), 1, - sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1355), 1, anon_sym_AMP, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - ACTIONS(1417), 1, + ACTIONS(1610), 1, anon_sym_STAR, - ACTIONS(1419), 1, + ACTIONS(1612), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(768), 1, + STATE(770), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(432), 2, + STATE(647), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1383), 4, + ACTIONS(1580), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -43173,13 +43080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43190,19 +43097,19 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4600] = 5, + [4509] = 5, ACTIONS(3), 1, sym_comment, - STATE(435), 2, + STATE(422), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1425), 5, + ACTIONS(87), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1423), 13, + ACTIONS(1445), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -43216,7 +43123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1421), 29, + ACTIONS(1439), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -43246,100 +43153,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [4661] = 5, + [4570] = 20, ACTIONS(3), 1, sym_comment, - STATE(431), 2, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1349), 1, + anon_sym_LPAREN2, + ACTIONS(1355), 1, + anon_sym_AMP, + ACTIONS(1359), 1, + anon_sym_sizeof, + ACTIONS(1614), 1, + anon_sym_STAR, + ACTIONS(1616), 1, + anon_sym_RBRACK, + STATE(430), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, + STATE(759), 1, + sym__expression, + ACTIONS(1351), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1353), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1357), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(647), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1580), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, ACTIONS(87), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1248), 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(1242), 29, - 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_DOT, - anon_sym_DASH_GT, - [4722] = 20, + STATE(638), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [4661] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1355), 1, anon_sym_AMP, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - ACTIONS(1428), 1, + ACTIONS(1618), 1, anon_sym_STAR, - ACTIONS(1430), 1, + ACTIONS(1620), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(788), 1, + STATE(747), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(652), 2, + STATE(647), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1383), 4, + ACTIONS(1580), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -43356,13 +43278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43373,44 +43295,44 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4813] = 20, + [4752] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1166), 1, + ACTIONS(1355), 1, anon_sym_AMP, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - ACTIONS(1432), 1, + ACTIONS(1622), 1, anon_sym_STAR, - ACTIONS(1434), 1, + ACTIONS(1624), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(831), 1, + STATE(813), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(430), 2, + STATE(647), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1383), 4, + ACTIONS(1580), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -43427,13 +43349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43444,10 +43366,19 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4904] = 3, + [4843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1438), 13, + STATE(434), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1630), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1628), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -43461,7 +43392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1436), 34, + ACTIONS(1626), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -43491,12 +43422,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4959] = 21, + [4904] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43513,19 +43439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1440), 1, + ACTIONS(1633), 1, anon_sym_LBRACE, - STATE(648), 1, + STATE(644), 1, sym_ms_call_modifier, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, STATE(1010), 1, sym__declaration_specifiers, - STATE(275), 3, + STATE(112), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43545,7 +43471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43558,7 +43484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -43566,7 +43492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5050] = 21, + [4995] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43583,19 +43509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1442), 1, + ACTIONS(1635), 1, anon_sym_LBRACE, - STATE(647), 1, + STATE(642), 1, sym_ms_call_modifier, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1013), 1, + STATE(1004), 1, sym__declaration_specifiers, - STATE(120), 3, + STATE(365), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43615,7 +43541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43628,7 +43554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -43636,7 +43562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5141] = 21, + [5086] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43653,19 +43579,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1444), 1, + ACTIONS(1637), 1, anon_sym_LBRACE, - STATE(649), 1, + STATE(641), 1, sym_ms_call_modifier, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1008), 1, + sym__declaration_specifiers, + STATE(348), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(882), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(645), 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, + [5177] = 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(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1639), 1, + anon_sym_LBRACE, + STATE(640), 1, + sym_ms_call_modifier, + STATE(703), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1001), 1, sym__declaration_specifiers, - STATE(272), 3, + STATE(358), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43685,7 +43681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43698,7 +43694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -43706,10 +43702,10 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5232] = 3, + [5268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 13, + ACTIONS(1643), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -43723,7 +43719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1446), 34, + ACTIONS(1641), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -43758,141 +43754,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [5287] = 21, + [5323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, - sym_identifier, - ACTIONS(1450), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_ms_call_modifier, - STATE(696), 1, - sym__type_specifier, - STATE(775), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1008), 1, - sym__declaration_specifiers, - STATE(253), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(881), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(650), 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, - [5378] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1144), 1, - sym_identifier, - ACTIONS(1452), 1, - anon_sym_RPAREN, - STATE(436), 1, - sym_string_literal, - STATE(728), 1, - sym__expression, - STATE(1321), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1647), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1645), 34, + 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, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, + 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, - STATE(614), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [5460] = 18, + [5378] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -43901,15 +43815,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1454), 1, + ACTIONS(1649), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(718), 1, + STATE(701), 1, sym__expression, - STATE(1286), 1, + STATE(1353), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -43939,77 +43853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [5542] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(436), 1, - sym_string_literal, - STATE(607), 1, - sym__expression, - STATE(608), 1, - sym_initializer_list, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44020,7 +43870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5624] = 18, + [5460] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44029,15 +43879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1456), 1, - anon_sym_RPAREN, - STATE(436), 1, + ACTIONS(1651), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(727), 1, + STATE(706), 1, sym__expression, - STATE(1417), 1, + STATE(1404), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44067,13 +43917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44084,7 +43934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5706] = 18, + [5542] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44093,16 +43943,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1458), 1, - anon_sym_SEMI, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(744), 1, + STATE(532), 1, + sym_initializer_list, + STATE(533), 1, sym__expression, - STATE(1409), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -44131,13 +43981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44148,7 +43998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5788] = 18, + [5624] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44157,16 +44007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1460), 1, - anon_sym_SEMI, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(710), 1, + STATE(698), 1, sym__expression, - STATE(1399), 1, - sym_comma_expression, + STATE(1232), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -44195,13 +44045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44212,7 +44062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5870] = 18, + [5706] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44221,15 +44071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1462), 1, + ACTIONS(1653), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(734), 1, + STATE(728), 1, sym__expression, - STATE(1407), 1, + STATE(1328), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44259,13 +44109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44276,7 +44126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5952] = 18, + [5788] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44285,15 +44135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1464), 1, + ACTIONS(1655), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(721), 1, + STATE(710), 1, sym__expression, - STATE(1289), 1, + STATE(1282), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44323,13 +44173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44340,7 +44190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6034] = 18, + [5870] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44349,15 +44199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1466), 1, - anon_sym_SEMI, - STATE(436), 1, + ACTIONS(1657), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(707), 1, + STATE(695), 1, sym__expression, - STATE(1364), 1, + STATE(1375), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44387,13 +44237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44404,7 +44254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6116] = 18, + [5952] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44413,15 +44263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1468), 1, + ACTIONS(1659), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(731), 1, + STATE(711), 1, sym__expression, - STATE(1277), 1, + STATE(1280), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44451,13 +44301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44468,71 +44318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6198] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1144), 1, - sym_identifier, - ACTIONS(1470), 1, - anon_sym_RPAREN, - STATE(436), 1, - sym_string_literal, - STATE(738), 1, - sym__expression, - STATE(1314), 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), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(614), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [6280] = 18, + [6034] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44541,15 +44327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1472), 1, + ACTIONS(1661), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(737), 1, + STATE(712), 1, sym__expression, - STATE(1303), 1, + STATE(1278), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44579,13 +44365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44596,7 +44382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6362] = 18, + [6116] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44605,15 +44391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1474), 1, + ACTIONS(1663), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(742), 1, + STATE(716), 1, sym__expression, - STATE(1413), 1, + STATE(1370), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44643,13 +44429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44660,7 +44446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6444] = 18, + [6198] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44669,15 +44455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1476), 1, + ACTIONS(1665), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, STATE(709), 1, sym__expression, - STATE(1339), 1, + STATE(1285), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44707,77 +44493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [6526] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1158), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1170), 1, - anon_sym_sizeof, - STATE(436), 1, - sym_string_literal, - STATE(608), 1, - sym_initializer_list, - STATE(634), 1, - sym__expression, - ACTIONS(1162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1164), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1168), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(643), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44788,7 +44510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6608] = 18, + [6280] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44797,15 +44519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1478), 1, + ACTIONS(1667), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(711), 1, + STATE(723), 1, sym__expression, - STATE(1338), 1, + STATE(1293), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44835,13 +44557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44852,7 +44574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6690] = 18, + [6362] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44861,16 +44583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1480), 1, - anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(733), 1, + STATE(707), 1, sym__expression, - STATE(1320), 1, - sym_comma_expression, + STATE(1226), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -44899,13 +44621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44916,7 +44638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6772] = 18, + [6444] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44925,15 +44647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1482), 1, + ACTIONS(1669), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(726), 1, + STATE(694), 1, sym__expression, - STATE(1350), 1, + STATE(1379), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44963,13 +44685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44980,7 +44702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6854] = 18, + [6526] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44989,15 +44711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1671), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, STATE(715), 1, sym__expression, - STATE(1284), 1, + STATE(1276), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45027,13 +44749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45044,99 +44766,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6936] = 18, + [6608] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1486), 1, - anon_sym_RPAREN, - STATE(436), 1, - sym_string_literal, - STATE(714), 1, - sym__expression, - STATE(1336), 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), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(614), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [7018] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(888), 1, anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1144), 1, - sym_identifier, - ACTIONS(1488), 1, - anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(713), 1, + STATE(532), 1, + sym_initializer_list, + STATE(533), 1, sym__expression, - STATE(1282), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -45155,13 +44813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45172,7 +44830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7100] = 18, + [6690] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45181,15 +44839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1490), 1, + ACTIONS(1673), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(735), 1, + STATE(729), 1, sym__expression, - STATE(1420), 1, + STATE(1331), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45219,13 +44877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45236,7 +44894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7182] = 18, + [6772] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45245,15 +44903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1492), 1, - anon_sym_SEMI, - STATE(436), 1, + ACTIONS(1675), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(736), 1, + STATE(692), 1, sym__expression, - STATE(1300), 1, + STATE(1274), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45283,13 +44941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45300,7 +44958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7264] = 18, + [6854] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45309,16 +44967,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1677), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(607), 1, + STATE(732), 1, sym__expression, - STATE(608), 1, - sym_initializer_list, + STATE(1399), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45347,13 +45005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45364,7 +45022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7346] = 18, + [6936] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45373,15 +45031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1494), 1, - anon_sym_RPAREN, - STATE(436), 1, + ACTIONS(1679), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(743), 1, + STATE(737), 1, sym__expression, - STATE(1322), 1, + STATE(1315), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45411,13 +45069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45428,71 +45086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7428] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(436), 1, - sym_string_literal, - STATE(608), 1, - sym_initializer_list, - STATE(634), 1, - sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(591), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [7510] = 18, + [7018] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45501,16 +45095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1681), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(699), 1, + STATE(730), 1, sym__expression, - STATE(1221), 1, - sym_initializer_list, + STATE(1334), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45539,13 +45133,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45556,7 +45150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7592] = 18, + [7100] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45565,15 +45159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1496), 1, + ACTIONS(1683), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(722), 1, + STATE(693), 1, sym__expression, - STATE(1318), 1, + STATE(1369), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45603,13 +45197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45620,35 +45214,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7674] = 18, + [7182] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1498), 1, - anon_sym_RPAREN, - STATE(436), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN2, + ACTIONS(1359), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(708), 1, + STATE(532), 1, + sym_initializer_list, + STATE(620), 1, sym__expression, - STATE(1278), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1353), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -45667,13 +45261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45684,7 +45278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7756] = 18, + [7264] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45693,15 +45287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1500), 1, + ACTIONS(1685), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(702), 1, + STATE(738), 1, sym__expression, - STATE(1315), 1, + STATE(1385), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45731,13 +45325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45748,7 +45342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7838] = 18, + [7346] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45757,16 +45351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1687), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(705), 1, + STATE(725), 1, sym__expression, - STATE(1226), 1, - sym_initializer_list, + STATE(1332), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45795,13 +45389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45812,7 +45406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7920] = 18, + [7428] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45821,15 +45415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1502), 1, + ACTIONS(1689), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(719), 1, + STATE(724), 1, sym__expression, - STATE(1332), 1, + STATE(1333), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45859,13 +45453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45876,7 +45470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8002] = 18, + [7510] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45885,15 +45479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1504), 1, + ACTIONS(1691), 1, anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(741), 1, + STATE(713), 1, sym__expression, - STATE(1441), 1, + STATE(1340), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45923,13 +45517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45940,7 +45534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8084] = 18, + [7592] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45949,15 +45543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1506), 1, - anon_sym_RPAREN, - STATE(436), 1, + ACTIONS(1693), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(703), 1, + STATE(733), 1, sym__expression, - STATE(1445), 1, + STATE(1414), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45987,13 +45581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46004,97 +45598,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8166] = 17, + [7674] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(1088), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1508), 1, - anon_sym_RBRACK, - STATE(436), 1, - sym_string_literal, - STATE(640), 1, - sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(591), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [8245] = 17, - ACTIONS(3), 1, - sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1510), 1, - anon_sym_RBRACK, - STATE(436), 1, + ACTIONS(1695), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(640), 1, + STATE(705), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + STATE(1351), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -46111,13 +45645,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46128,7 +45662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8324] = 17, + [7756] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46137,13 +45671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1697), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(717), 1, + STATE(736), 1, sym__expression, - STATE(1423), 1, + STATE(1316), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46173,13 +45709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46190,7 +45726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8403] = 17, + [7838] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46199,14 +45735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1512), 1, - anon_sym_SEMI, - STATE(436), 1, + ACTIONS(1699), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(765), 1, + STATE(727), 1, sym__expression, + STATE(1311), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46235,13 +45773,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46252,35 +45790,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8482] = 17, + [7920] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1514), 1, - anon_sym_RBRACK, - STATE(436), 1, + ACTIONS(1701), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(640), 1, + STATE(739), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + STATE(1310), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -46297,13 +45837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46314,22 +45854,24 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8561] = 17, + [8002] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, + ACTIONS(884), 1, + anon_sym_LBRACE, ACTIONS(1088), 1, anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1516), 1, - anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(640), 1, + STATE(532), 1, + sym_initializer_list, + STATE(620), 1, sym__expression, ACTIONS(1090), 2, anon_sym_DASH, @@ -46340,7 +45882,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46359,13 +45901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46376,7 +45918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8640] = 17, + [8084] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46385,14 +45927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1518), 1, - anon_sym_RPAREN, - STATE(436), 1, + ACTIONS(1703), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(694), 1, + STATE(721), 1, sym__expression, + STATE(1281), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46421,75 +45965,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [8719] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1520), 1, - anon_sym_RBRACK, - STATE(436), 1, - sym_string_literal, - STATE(640), 1, - sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46500,7 +45982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8798] = 17, + [8166] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46509,13 +45991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1705), 1, anon_sym_SEMI, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(757), 1, + STATE(773), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46545,13 +46027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46562,7 +46044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8877] = 17, + [8245] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46571,13 +46053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1524), 1, + ACTIONS(1707), 1, anon_sym_SEMI, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(754), 1, + STATE(804), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46607,13 +46089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46624,7 +46106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8956] = 17, + [8324] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -46635,11 +46117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1526), 1, + ACTIONS(1709), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(640), 1, + STATE(624), 1, sym__expression, ACTIONS(1090), 2, anon_sym_DASH, @@ -46650,7 +46132,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46669,13 +46151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46686,7 +46168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9035] = 17, + [8403] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46695,13 +46177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1711), 1, anon_sym_SEMI, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(752), 1, + STATE(792), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46731,13 +46213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46748,69 +46230,55 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9114] = 17, + [8482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1530), 1, - anon_sym_RBRACK, - STATE(436), 1, - sym_string_literal, - STATE(640), 1, - sym__expression, - ACTIONS(1090), 2, + ACTIONS(1715), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(591), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [9193] = 17, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1713), 30, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [8533] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46819,14 +46287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_RPAREN, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(689), 1, + STATE(719), 1, sym__expression, + STATE(1273), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46855,13 +46323,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46872,35 +46340,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9272] = 17, + [8612] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1717), 1, + anon_sym_RBRACK, + STATE(430), 1, sym_string_literal, - STATE(695), 1, + STATE(624), 1, sym__expression, - STATE(1231), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -46917,13 +46385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46934,55 +46402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1536), 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(1534), 30, - 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [9402] = 17, + [8691] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46991,14 +46411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1538), 1, - anon_sym_SEMI, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(821), 1, + STATE(720), 1, sym__expression, + STATE(1418), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -47027,13 +46447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47044,7 +46464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9481] = 17, + [8770] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47053,13 +46473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1540), 1, + ACTIONS(1719), 1, anon_sym_SEMI, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(803), 1, + STATE(764), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47089,13 +46509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47106,7 +46526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9560] = 17, + [8849] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47115,13 +46535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1542), 1, + ACTIONS(1721), 1, anon_sym_SEMI, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(790), 1, + STATE(815), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47151,13 +46571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47168,35 +46588,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9639] = 17, + [8928] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1544), 1, - anon_sym_SEMI, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1723), 1, + anon_sym_RBRACK, + STATE(430), 1, sym_string_literal, - STATE(778), 1, + STATE(624), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -47213,13 +46633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47230,35 +46650,97 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9718] = 17, + [9007] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1546), 1, - anon_sym_SEMI, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1725), 1, + anon_sym_RBRACK, + STATE(430), 1, sym_string_literal, - STATE(802), 1, + STATE(624), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(555), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [9086] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + anon_sym_RBRACK, + STATE(430), 1, + sym_string_literal, + STATE(624), 1, + sym__expression, + ACTIONS(1090), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -47275,13 +46757,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47292,7 +46774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9797] = 17, + [9165] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -47303,11 +46785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1548), 1, + ACTIONS(1729), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(640), 1, + STATE(624), 1, sym__expression, ACTIONS(1090), 2, anon_sym_DASH, @@ -47318,7 +46800,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -47337,13 +46819,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47354,7 +46836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9876] = 17, + [9244] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47363,13 +46845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1731), 1, anon_sym_SEMI, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(747), 1, + STATE(791), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47399,13 +46881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47416,7 +46898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9955] = 17, + [9323] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47425,13 +46907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1552), 1, - anon_sym_SEMI, - STATE(436), 1, + ACTIONS(1733), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(806), 1, + STATE(687), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47461,13 +46943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47478,7 +46960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10034] = 17, + [9402] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -47489,11 +46971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - ACTIONS(1554), 1, + ACTIONS(1735), 1, anon_sym_RBRACK, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(640), 1, + STATE(624), 1, sym__expression, ACTIONS(1090), 2, anon_sym_DASH, @@ -47504,7 +46986,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -47523,13 +47005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47540,35 +47022,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10113] = 17, + [9481] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1556), 1, - anon_sym_SEMI, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1737), 1, + anon_sym_RBRACK, + STATE(430), 1, sym_string_literal, - STATE(813), 1, + STATE(624), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -47585,13 +47067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47602,7 +47084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10192] = 17, + [9560] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47611,13 +47093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(704), 1, + STATE(686), 1, sym__expression, - STATE(1429), 1, + STATE(1213), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47647,13 +47129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47664,35 +47146,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10271] = 17, + [9639] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1558), 1, - anon_sym_RBRACK, - STATE(436), 1, + ACTIONS(1739), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_string_literal, - STATE(640), 1, + STATE(684), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -47709,13 +47191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47726,7 +47208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10350] = 16, + [9718] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -47737,9 +47219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1098), 1, anon_sym_sizeof, - STATE(436), 1, + ACTIONS(1741), 1, + anon_sym_RBRACK, + STATE(430), 1, sym_string_literal, - STATE(640), 1, + STATE(624), 1, sym__expression, ACTIONS(1090), 2, anon_sym_DASH, @@ -47750,7 +47234,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -47769,13 +47253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47786,7 +47270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10426] = 16, + [9797] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47795,11 +47279,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1743), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(755), 1, + STATE(826), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47829,13 +47315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47846,7 +47332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10502] = 16, + [9876] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47855,11 +47341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1745), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(661), 1, + STATE(795), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47889,13 +47377,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47906,33 +47394,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10578] = 16, + [9955] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + ACTIONS(1747), 1, + anon_sym_RBRACK, + STATE(430), 1, sym_string_literal, - STATE(662), 1, + STATE(624), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -47949,13 +47439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47966,7 +47456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10654] = 16, + [10034] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47975,11 +47465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1749), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(532), 1, + STATE(824), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48009,13 +47501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48026,31 +47518,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10730] = 16, + [10113] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1170), 1, - anon_sym_sizeof, - STATE(436), 1, + ACTIONS(1751), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(763), 1, + STATE(806), 1, sym__expression, - ACTIONS(1162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48069,13 +47563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48086,33 +47580,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10806] = 16, + [10192] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(436), 1, + ACTIONS(1753), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(632), 1, + STATE(828), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -48129,13 +47625,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48146,33 +47642,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10882] = 16, + [10271] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(436), 1, + ACTIONS(1755), 1, + anon_sym_SEMI, + STATE(430), 1, sym_string_literal, - STATE(639), 1, + STATE(825), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -48189,13 +47687,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48206,33 +47704,97 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10958] = 16, + [10350] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1785), 1, + anon_sym_EQ, + ACTIONS(1787), 1, + anon_sym_QMARK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1757), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + 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, + [10434] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(633), 1, + STATE(714), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -48249,13 +47811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48266,10 +47828,19 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11034] = 3, + [10510] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 13, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1795), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -48283,10 +47854,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1560), 29, + ACTIONS(1793), 24, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -48295,8 +47865,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, @@ -48311,35 +47879,33 @@ 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, - [11084] = 16, + [10568] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(630), 1, + STATE(551), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -48356,13 +47922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48373,33 +47939,85 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11160] = 16, + [10644] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1799), 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(1797), 22, + 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_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, + [10704] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(637), 1, + STATE(648), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -48416,13 +48034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48433,33 +48051,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11236] = 16, + [10780] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(623), 1, + STATE(578), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -48476,13 +48094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48493,33 +48111,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11312] = 16, + [10856] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(626), 1, + STATE(632), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1357), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -48536,13 +48154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48553,78 +48171,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1566), 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(1564), 29, - 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_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, - [11438] = 16, + [10932] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1568), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - STATE(436), 1, + ACTIONS(1359), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(653), 1, + STATE(766), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1353), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48643,13 +48214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48660,7 +48231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11514] = 16, + [11008] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48669,11 +48240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(794), 1, + STATE(718), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48703,13 +48274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48720,7 +48291,67 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11590] = 16, + [11084] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(430), 1, + sym_string_literal, + STATE(503), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(555), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [11160] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48729,11 +48360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(538), 1, + STATE(653), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48763,13 +48394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48780,31 +48411,78 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11666] = 16, + [11236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1803), 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(1801), 29, + 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_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, + [11286] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(822), 1, + STATE(763), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48823,13 +48501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48840,33 +48518,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11742] = 16, + [11362] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(627), 1, + STATE(762), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1357), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -48883,13 +48561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48900,7 +48578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11818] = 16, + [11438] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48909,11 +48587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(654), 1, + STATE(651), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48943,13 +48621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48960,7 +48638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11894] = 16, + [11514] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48969,11 +48647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(804), 1, + STATE(658), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49003,13 +48681,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49020,33 +48698,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11970] = 16, + [11590] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(628), 1, + STATE(761), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1357), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -49063,13 +48741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49080,33 +48758,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12046] = 16, + [11666] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(629), 1, + STATE(652), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -49123,13 +48801,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49140,132 +48818,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1572), 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(1570), 29, - 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_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, - [12172] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1578), 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(1574), 22, - 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_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, - [12232] = 16, + [11742] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(655), 1, + STATE(624), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -49282,13 +48861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49299,95 +48878,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12308] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1592), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1594), 1, - anon_sym_AMP_AMP, - ACTIONS(1596), 1, - anon_sym_PIPE, - ACTIONS(1598), 1, - anon_sym_CARET, - ACTIONS(1600), 1, - anon_sym_AMP, - ACTIONS(1610), 1, - anon_sym_EQ, - ACTIONS(1612), 1, - anon_sym_QMARK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1602), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1604), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1606), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1608), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1590), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1586), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - 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, - [12392] = 16, + [11818] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(816), 1, + STATE(622), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49406,13 +48921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49423,31 +48938,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12468] = 16, + [11894] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(575), 1, + STATE(760), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49466,13 +48981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49483,179 +48998,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1616), 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(1614), 29, - 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_DOT, - anon_sym_DASH_GT, - [12594] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1620), 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(1618), 22, - 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_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, - [12654] = 3, + [11970] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 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(1622), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(19), 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, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [12704] = 16, - ACTIONS(3), 1, - sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(631), 1, + STATE(654), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -49672,13 +49041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49689,33 +49058,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12780] = 16, + [12046] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(635), 1, + STATE(656), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + 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), 3, sym_true, sym_false, @@ -49732,13 +49101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49749,31 +49118,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12856] = 16, + [12122] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1170), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(785), 1, + STATE(657), 1, sym__expression, - ACTIONS(1162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49792,13 +49161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49809,20 +49178,20 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12932] = 16, + [12198] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + ACTIONS(1805), 1, + anon_sym_LPAREN2, + STATE(430), 1, sym_string_literal, - STATE(534), 1, + STATE(592), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -49852,13 +49221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49869,31 +49238,78 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13008] = 16, + [12274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 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(1807), 29, + 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_DOT, + anon_sym_DASH_GT, + [12324] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(576), 1, + STATE(757), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49912,13 +49328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49929,31 +49345,190 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13084] = 16, + [12400] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, + sym_string_literal, + STATE(756), 1, + sym__expression, + ACTIONS(1351), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1353), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1357), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(638), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [12476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 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(1811), 29, + 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_DOT, + anon_sym_DASH_GT, + [12526] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1817), 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(1815), 22, + 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_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, + [12586] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1341), 1, + sym_identifier, + STATE(430), 1, sym_string_literal, - STATE(579), 1, + STATE(754), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49972,13 +49547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49989,31 +49564,85 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13160] = 16, + [12662] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 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(1819), 22, + 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_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, + [12726] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1823), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(581), 1, + STATE(649), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50032,13 +49661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50049,31 +49678,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13236] = 16, + [12802] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(585), 1, + STATE(659), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50092,13 +49721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50109,31 +49738,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13312] = 16, + [12878] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(639), 1, + STATE(767), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50152,13 +49781,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50169,27 +49798,41 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13388] = 3, + [12954] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1821), 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(1242), 29, + ACTIONS(1819), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -50198,8 +49841,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, @@ -50212,97 +49853,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [13020] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1349), 1, + anon_sym_LPAREN2, + ACTIONS(1359), 1, + anon_sym_sizeof, + STATE(430), 1, + sym_string_literal, + STATE(621), 1, + sym__expression, + ACTIONS(1351), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1353), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [13438] = 8, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(638), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [13096] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1628), 13, + ACTIONS(1761), 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(1777), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1626), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1779), 2, 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, - [13498] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1584), 2, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1632), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1763), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1821), 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(1630), 24, + ACTIONS(1819), 20, 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_RBRACE, anon_sym_COLON, @@ -50317,9 +49970,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, - [13556] = 16, + [13166] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -50330,9 +49981,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(587), 1, + STATE(578), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -50362,13 +50013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50379,93 +50030,150 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13632] = 16, + [13242] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1634), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - STATE(436), 1, - sym_string_literal, - STATE(638), 1, - sym__expression, - ACTIONS(1090), 2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 4, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(591), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [13708] = 16, + anon_sym_EQ, + ACTIONS(1819), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [13314] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_LBRACK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(1819), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [13388] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + ACTIONS(1825), 1, + anon_sym_LPAREN2, + STATE(430), 1, sym_string_literal, - STATE(636), 1, + STATE(819), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1357), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -50482,13 +50190,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50499,31 +50207,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13784] = 16, + [13464] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(632), 1, + STATE(573), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50542,13 +50250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50559,151 +50267,214 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13860] = 16, + [13540] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1144), 1, - sym_identifier, - STATE(436), 1, - sym_string_literal, - STATE(659), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_LBRACK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1821), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1763), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1819), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [13616] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_EQ, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(614), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [13936] = 16, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1819), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [13694] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1144), 1, - sym_identifier, - STATE(436), 1, - sym_string_literal, - STATE(658), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_EQ, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(614), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(549), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [14012] = 16, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1819), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + 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, + [13774] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1170), 1, - anon_sym_sizeof, - ACTIONS(1636), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - STATE(436), 1, + ACTIONS(1359), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(777), 1, + STATE(775), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50722,13 +50493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50739,39 +50510,28 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14088] = 9, + [13850] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1250), 1, - anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_EQ, - ACTIONS(1261), 2, - anon_sym_RPAREN, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1253), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1259), 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(1248), 11, - anon_sym_DASH, - anon_sym_PLUS, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1821), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -50779,20 +50539,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1242), 12, + anon_sym_EQ, + ACTIONS(1819), 22, 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_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14150] = 16, + 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, + [13912] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -50803,9 +50574,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(588), 1, + STATE(549), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -50835,13 +50606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50852,7 +50623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14226] = 16, + [13988] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -50863,9 +50634,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(589), 1, + STATE(548), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -50895,13 +50666,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50912,31 +50683,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14302] = 16, + [14064] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(532), 1, + STATE(752), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50955,13 +50726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50972,41 +50743,74 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14378] = 11, + [14140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1445), 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(1439), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1580), 1, + 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, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, + 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, - ACTIONS(1584), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1588), 2, + [14190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1829), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1590), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1640), 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(1638), 22, + ACTIONS(1827), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -51014,7 +50818,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, @@ -51027,7 +50833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [14444] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [14240] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51036,11 +50846,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(664), 1, + STATE(771), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51070,13 +50880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51087,13 +50897,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14520] = 3, + [14316] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1644), 13, + ACTIONS(1441), 1, + anon_sym_LPAREN2, + ACTIONS(1447), 1, + anon_sym_STAR, + ACTIONS(1455), 1, + anon_sym_EQ, + ACTIONS(1450), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1453), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1459), 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(1445), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -51103,38 +50937,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1642), 29, + ACTIONS(1439), 12, 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_DOT, anon_sym_DASH_GT, - [14570] = 16, + [14378] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -51145,9 +50961,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(592), 1, + STATE(547), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -51177,13 +50993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51194,10 +51010,73 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14646] = 3, + [14454] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1765), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1767), 1, + anon_sym_AMP_AMP, + ACTIONS(1769), 1, + anon_sym_PIPE, + ACTIONS(1771), 1, + anon_sym_CARET, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1833), 1, + anon_sym_EQ, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1779), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1831), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, + [14536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1648), 13, + ACTIONS(1837), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -51211,7 +51090,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1646), 29, + ACTIONS(1835), 29, + 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_DOT, + anon_sym_DASH_GT, + [14586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 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(1839), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -51222,9 +51148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -51241,7 +51167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [14696] = 16, + [14636] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51250,11 +51176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(657), 1, + STATE(655), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51284,13 +51210,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51301,31 +51227,91 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14772] = 16, + [14712] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1341), 1, + sym_identifier, + STATE(430), 1, + sym_string_literal, + STATE(808), 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), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(609), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [14788] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(812), 1, + STATE(505), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51344,13 +51330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51361,31 +51347,78 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14848] = 16, + [14864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1845), 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(1843), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, + 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_DOT, + anon_sym_DASH_GT, + [14914] = 16, + ACTIONS(3), 1, + sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1347), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN2, + ACTIONS(1359), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(725), 1, + STATE(758), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1353), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51404,13 +51437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51421,31 +51454,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14924] = 16, + [14990] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1170), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(810), 1, + STATE(573), 1, sym__expression, - ACTIONS(1162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51464,13 +51497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51481,31 +51514,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15000] = 16, + [15066] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(809), 1, + STATE(774), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51524,13 +51557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51541,7 +51574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15076] = 16, + [15142] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -51552,9 +51585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(551), 1, + STATE(544), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -51584,13 +51617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51601,33 +51634,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15152] = 16, + [15218] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(663), 1, + STATE(623), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51644,13 +51677,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51661,93 +51694,96 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15228] = 10, + [15294] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1588), 2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, + sym_string_literal, + STATE(626), 1, + sym__expression, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1590), 3, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1578), 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(1574), 22, - 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_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, - [15292] = 11, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(555), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [15370] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1588), 2, + ACTIONS(1849), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1590), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1578), 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(1574), 22, + ACTIONS(1847), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -51770,31 +51806,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [15358] = 16, + [15430] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(436), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(697), 1, + STATE(543), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51813,13 +51849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51830,7 +51866,54 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15434] = 16, + [15506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1853), 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(1851), 29, + 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_DOT, + anon_sym_DASH_GT, + [15556] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -51841,9 +51924,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(550), 1, + STATE(541), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -51873,13 +51956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51890,88 +51973,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15510] = 13, + [15632] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1604), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1606), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1608), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1590), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1578), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1574), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_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, - [15580] = 16, - ACTIONS(3), 1, - sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1170), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(808), 1, + STATE(772), 1, sym__expression, - ACTIONS(1162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51990,13 +52016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52007,50 +52033,44 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15656] = 14, + [15708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1588), 2, + ACTIONS(1821), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1602), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1604), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1606), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1608), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1590), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1578), 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(1574), 18, + ACTIONS(1819), 22, 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_RBRACE, anon_sym_COLON, @@ -52065,7 +52085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [15728] = 16, + [15768] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52074,11 +52094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(656), 1, + STATE(650), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52108,13 +52128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52125,31 +52145,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15804] = 16, + [15844] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(805), 1, + STATE(507), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52168,13 +52188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52185,10 +52205,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15880] = 3, + [15920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 13, + ACTIONS(1857), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -52202,7 +52222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1650), 29, + ACTIONS(1855), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -52213,9 +52233,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -52232,66 +52252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [15930] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1600), 1, - anon_sym_AMP, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1602), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1604), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1606), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1608), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1578), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1590), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1574), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - [16004] = 16, + [15970] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52300,11 +52261,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(551), 1, + STATE(505), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52334,13 +52295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52351,177 +52312,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16080] = 16, + [16046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_CARET, - ACTIONS(1600), 1, - anon_sym_AMP, - STATE(600), 1, - sym_argument_list, - ACTIONS(1578), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1588), 2, + ACTIONS(1861), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1602), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1604), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1606), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1608), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1590), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1574), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - [16156] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1578), 1, - anon_sym_EQ, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, anon_sym_PIPE, - ACTIONS(1598), 1, anon_sym_CARET, - ACTIONS(1600), 1, anon_sym_AMP, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1602), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1604), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1606), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1608), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1590), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1574), 18, + anon_sym_EQ, + ACTIONS(1859), 29, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - [16234] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1578), 1, - anon_sym_EQ, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1594), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(1596), 1, - anon_sym_PIPE, - ACTIONS(1598), 1, - anon_sym_CARET, - ACTIONS(1600), 1, - anon_sym_AMP, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1602), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1604), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1606), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1608), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1590), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1574), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -52534,33 +52355,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [16314] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [16096] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(762), 1, + STATE(629), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52577,13 +52402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52594,10 +52419,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16390] = 3, + [16172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(1865), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -52611,7 +52436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1242), 29, + ACTIONS(1863), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -52641,28 +52466,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [16440] = 9, + [16222] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, + sym_string_literal, + STATE(631), 1, + sym__expression, + ACTIONS(1090), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1590), 3, + ACTIONS(1355), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1578), 10, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(555), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [16298] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, + sym_string_literal, + STATE(634), 1, + sym__expression, + ACTIONS(1090), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(555), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [16374] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(430), 1, + sym_string_literal, + STATE(539), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(555), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [16450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 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, @@ -52671,9 +52663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1574), 22, + ACTIONS(1439), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -52682,6 +52675,8 @@ 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, @@ -52694,31 +52689,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [16502] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [16500] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(436), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(827), 1, + STATE(535), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52737,13 +52736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52754,7 +52753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16578] = 16, + [16576] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52763,11 +52762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(789), 1, + STATE(788), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52797,13 +52796,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [16652] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1761), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1781), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1763), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1869), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1867), 22, + 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_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, + [16718] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, + sym_string_literal, + STATE(635), 1, + sym__expression, + ACTIONS(1090), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52814,33 +52928,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16654] = 16, + [16794] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(636), 1, + STATE(625), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52857,13 +52971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52874,80 +52988,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1656), 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(1654), 29, - 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_DOT, - anon_sym_DASH_GT, - [16780] = 16, + [16870] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(795), 1, + STATE(627), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52964,13 +53031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52981,33 +53048,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16856] = 16, + [16946] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(538), 1, + STATE(628), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -53024,13 +53091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53041,33 +53108,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16932] = 16, + [17022] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(888), 1, - anon_sym_sizeof, - ACTIONS(1658), 1, + ACTIONS(1088), 1, anon_sym_LPAREN2, - STATE(436), 1, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(563), 1, + STATE(632), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -53084,13 +53151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(591), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53101,10 +53168,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17008] = 3, + [17098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1662), 13, + ACTIONS(1873), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53118,7 +53185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1660), 29, + ACTIONS(1871), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -53148,7 +53215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17058] = 16, + [17148] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53157,11 +53224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(793), 1, + STATE(779), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53191,13 +53258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53208,57 +53275,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17134] = 19, + [17224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1592), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1594), 1, - anon_sym_AMP_AMP, - ACTIONS(1596), 1, + ACTIONS(1877), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1598), 1, anon_sym_CARET, - ACTIONS(1600), 1, anon_sym_AMP, - ACTIONS(1666), 1, - anon_sym_EQ, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1602), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1604), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1606), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1608), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1590), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1664), 16, + anon_sym_EQ, + ACTIONS(1875), 29, 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, @@ -53271,33 +53318,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17216] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17274] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(807), 1, + STATE(633), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(555), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [17350] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, + sym_string_literal, + STATE(622), 1, + sym__expression, + ACTIONS(1090), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -53314,13 +53425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53331,7 +53442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17292] = 16, + [17426] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53340,11 +53451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(1341), 1, sym_identifier, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(660), 1, + STATE(755), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53374,13 +53485,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53391,78 +53502,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 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(1668), 29, - 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_DOT, - anon_sym_DASH_GT, - [17418] = 16, + [17502] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1347), 1, sym_identifier, - ACTIONS(1160), 1, + ACTIONS(1349), 1, anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(1359), 1, anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(759), 1, + STATE(746), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1353), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(1355), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -53481,13 +53545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(638), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53498,179 +53562,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17494] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1674), 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(1672), 22, - 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_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, - [17554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1678), 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(1676), 29, - 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_DOT, - anon_sym_DASH_GT, - [17604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 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(1680), 29, - 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_DOT, - anon_sym_DASH_GT, - [17654] = 16, + [17578] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1144), 1, + ACTIONS(870), 1, sym_identifier, - STATE(436), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN2, + ACTIONS(1098), 1, + anon_sym_sizeof, + STATE(430), 1, sym_string_literal, - STATE(825), 1, + STATE(621), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -53687,13 +53605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(614), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53704,33 +53622,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17730] = 16, + [17654] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1170), 1, + ACTIONS(1098), 1, anon_sym_sizeof, - STATE(436), 1, + ACTIONS(1879), 1, + anon_sym_LPAREN2, + STATE(430), 1, sym_string_literal, - STATE(761), 1, + STATE(619), 1, sym__expression, - ACTIONS(1162), 2, + ACTIONS(1090), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(1092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(1096), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1355), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -53747,13 +53665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(555), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53764,31 +53682,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17806] = 16, + [17730] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1158), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1160), 1, - anon_sym_LPAREN2, - ACTIONS(1170), 1, - anon_sym_sizeof, - STATE(436), 1, + STATE(430), 1, sym_string_literal, - STATE(823), 1, + STATE(787), 1, sym__expression, - ACTIONS(1162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1164), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1166), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1168), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -53807,13 +53725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(643), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(549), 10, + STATE(589), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53824,60 +53742,72 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17882] = 5, + [17806] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1688), 1, - anon_sym_LBRACK_LBRACK, - STATE(613), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(1684), 18, - 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, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - sym_true, - sym_false, - sym_null, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1686), 20, - anon_sym_LPAREN2, + STATE(430), 1, + sym_string_literal, + STATE(799), 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, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(87), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [17935] = 5, + STATE(609), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(589), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [17882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -53888,7 +53818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53901,7 +53831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1242), 18, + ACTIONS(1439), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -53920,7 +53850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17988] = 20, + [17935] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -53937,19 +53867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1186), 1, + ACTIONS(1383), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1188), 1, + ACTIONS(1385), 1, anon_sym_RPAREN, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(935), 1, + STATE(927), 1, sym__declaration_specifiers, - STATE(1173), 2, + STATE(1208), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(45), 4, @@ -53968,13 +53898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -53982,14 +53912,61 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, + [18017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 1, + anon_sym_EQ, + ACTIONS(1461), 1, + anon_sym_COLON, + ACTIONS(1459), 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(1445), 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(1439), 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, [18070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1266), 1, + ACTIONS(1457), 1, anon_sym_COLON, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54000,7 +53977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54013,7 +53990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1242), 15, + ACTIONS(1439), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -54032,7 +54009,51 @@ static const uint16_t ts_small_parse_table[] = { [18123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 18, + ACTIONS(1365), 18, + 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_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(1367), 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, + [18170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1715), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -54051,7 +54072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1152), 21, + ACTIONS(1713), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -54073,14 +54094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18170] = 6, + [18217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1268), 1, + ACTIONS(1463), 1, anon_sym_COLON, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54091,7 +54112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54104,7 +54125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1242), 15, + ACTIONS(1439), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -54120,14 +54141,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18223] = 6, + [18270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1361), 18, + 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_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(1363), 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, + [18317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, + ACTIONS(1455), 1, anon_sym_EQ, - ACTIONS(1257), 1, + ACTIONS(1465), 1, anon_sym_COLON, - ACTIONS(1259), 10, + ACTIONS(1459), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54138,7 +54203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54151,7 +54216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1242), 15, + ACTIONS(1439), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -54167,7 +54232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18276] = 19, + [18370] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -54184,15 +54249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1186), 1, + ACTIONS(1383), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(935), 1, + STATE(927), 1, sym__declaration_specifiers, STATE(1229), 2, sym_variadic_parameter, @@ -54213,13 +54278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -54227,138 +54292,45 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [18355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 1, - anon_sym_EQ, - ACTIONS(1264), 1, - anon_sym_COLON, - ACTIONS(1259), 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(1248), 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(1242), 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, - [18408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 18, - 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_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(1156), 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, - [18455] = 13, + [18449] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1697), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1699), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1701), 2, + ACTIONS(1887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1695), 3, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1578), 4, + ACTIONS(1869), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(1574), 16, + ACTIONS(1867), 18, 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, @@ -54371,53 +54343,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18521] = 19, + [18511] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1666), 1, - anon_sym_EQ, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1705), 1, - anon_sym_AMP_AMP, - ACTIONS(1707), 1, - anon_sym_PIPE, - ACTIONS(1709), 1, - anon_sym_CARET, - ACTIONS(1711), 1, - anon_sym_AMP, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1817), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1697), 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(1699), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1713), 2, + anon_sym_EQ, + ACTIONS(1815), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1664), 12, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -54430,91 +54391,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1536), 18, - 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_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(1534), 20, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - 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, - [18645] = 14, + [18567] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1849), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1697), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1699), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1578), 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(1574), 14, + ACTIONS(1847), 18, 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, @@ -54527,105 +54439,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18713] = 15, + [18623] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1711), 1, - anon_sym_AMP, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1795), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1697), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1699), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1578), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1574), 14, - 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, - [18783] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, - anon_sym_LPAREN2, - ACTIONS(1709), 1, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(1711), 1, anon_sym_AMP, - STATE(600), 1, - sym_argument_list, - ACTIONS(1578), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1693), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1697), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1699), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1695), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1574), 14, + anon_sym_EQ, + ACTIONS(1793), 20, 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, @@ -54638,51 +54484,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18855] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [18677] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1578), 1, - anon_sym_EQ, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1707), 1, - anon_sym_PIPE, - ACTIONS(1709), 1, - anon_sym_CARET, - ACTIONS(1711), 1, - anon_sym_AMP, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1697), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1699), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1701), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1695), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1574), 14, + anon_sym_EQ, + ACTIONS(1819), 18, 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, @@ -54695,29 +54535,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18929] = 10, + [18735] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1799), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1578), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -54726,7 +54564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1574), 18, + ACTIONS(1797), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54745,100 +54583,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18989] = 18, + [18791] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1578), 1, - anon_sym_EQ, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1705), 1, - anon_sym_AMP_AMP, - ACTIONS(1707), 1, - anon_sym_PIPE, - ACTIONS(1709), 1, - anon_sym_CARET, - ACTIONS(1711), 1, - anon_sym_AMP, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1697), 2, + ACTIONS(1887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1889), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1699), 2, + ACTIONS(1891), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1695), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1574), 13, - 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, - [19065] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, - anon_sym_LPAREN2, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1620), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1821), 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(1618), 18, + ACTIONS(1819), 16, 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, @@ -54851,56 +54636,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19121] = 20, + [18857] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1610), 1, + ACTIONS(1821), 1, anon_sym_EQ, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1703), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1705), 1, + ACTIONS(1893), 1, anon_sym_AMP_AMP, - ACTIONS(1707), 1, + ACTIONS(1895), 1, anon_sym_PIPE, - ACTIONS(1709), 1, + ACTIONS(1897), 1, anon_sym_CARET, - ACTIONS(1711), 1, + ACTIONS(1899), 1, anon_sym_AMP, - ACTIONS(1715), 1, - anon_sym_QMARK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1697), 2, + ACTIONS(1887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1889), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1699), 2, + ACTIONS(1891), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1713), 2, + ACTIONS(1901), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 3, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1586), 11, + ACTIONS(1819), 13, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54911,36 +54694,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19201] = 8, + [18933] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1674), 13, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1821), 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(1672), 18, + ACTIONS(1819), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54959,28 +54745,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19257] = 9, + [18995] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1695), 3, + ACTIONS(1883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1578), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1821), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -54989,7 +54776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1574), 18, + ACTIONS(1819), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -55008,42 +54795,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19315] = 8, + [19055] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1821), 1, + anon_sym_EQ, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + ACTIONS(1895), 1, + anon_sym_PIPE, + ACTIONS(1897), 1, + anon_sym_CARET, + ACTIONS(1899), 1, + anon_sym_AMP, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1578), 13, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1889), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1891), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1901), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1819), 14, + 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, + [19129] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1833), 1, + anon_sym_EQ, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(1893), 1, + anon_sym_AMP_AMP, + ACTIONS(1895), 1, anon_sym_PIPE, + ACTIONS(1897), 1, anon_sym_CARET, + ACTIONS(1899), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(1903), 1, + anon_sym_PIPE_PIPE, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1574), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1889), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1891), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1901), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1831), 12, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -55056,45 +54911,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19371] = 11, + [19207] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + ACTIONS(1897), 1, + anon_sym_CARET, + ACTIONS(1899), 1, + anon_sym_AMP, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1821), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1701), 2, + ACTIONS(1887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1695), 3, + ACTIONS(1889), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1891), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1901), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1578), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(1574), 18, + ACTIONS(1819), 14, 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, @@ -55107,39 +54967,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19433] = 11, + [19279] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1693), 2, + ACTIONS(1821), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1701), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1695), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1640), 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(1638), 18, + ACTIONS(1819), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -55158,39 +55015,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19495] = 7, + [19335] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1785), 1, + anon_sym_EQ, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + ACTIONS(1893), 1, + anon_sym_AMP_AMP, + ACTIONS(1895), 1, + anon_sym_PIPE, + ACTIONS(1897), 1, + anon_sym_CARET, + ACTIONS(1899), 1, + anon_sym_AMP, + ACTIONS(1903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1905), 1, + anon_sym_QMARK, + STATE(562), 1, sym_argument_list, - ACTIONS(1584), 2, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1632), 13, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1889), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1891), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1901), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(1757), 11, + 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, + [19415] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(1899), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1883), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1887), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1889), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1891), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1901), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1821), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(1630), 20, + ACTIONS(1885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1819), 14, 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, @@ -55203,44 +55130,48 @@ 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, - [19549] = 8, + [19485] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1628), 13, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1889), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1891), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1901), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1821), 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(1626), 18, + ACTIONS(1819), 14, 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, @@ -55253,10 +55184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19605] = 3, + [19553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1648), 13, + ACTIONS(1857), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55270,7 +55201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1646), 24, + ACTIONS(1855), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -55295,10 +55226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19650] = 3, + [19598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1566), 13, + ACTIONS(1803), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55312,7 +55243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1564), 24, + ACTIONS(1801), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -55337,12 +55268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19695] = 5, + [19643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1907), 1, anon_sym_EQ, - ACTIONS(1719), 10, + ACTIONS(1909), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -55353,7 +55284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1248), 12, + ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55366,7 +55297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1242), 14, + ACTIONS(1439), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -55381,10 +55312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19744] = 3, + [19692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1572), 13, + ACTIONS(1829), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55398,7 +55329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1570), 24, + ACTIONS(1827), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -55423,7 +55354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19789] = 17, + [19737] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55440,13 +55371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1045), 1, + STATE(1026), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55464,48 +55395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 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, - [19861] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1728), 1, - anon_sym___attribute__, - ACTIONS(1731), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1734), 1, - anon_sym___declspec, - ACTIONS(1737), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1725), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1723), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(646), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -55513,19 +55409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1721), 11, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [19917] = 17, + [19809] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55542,13 +55426,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1020), 1, + STATE(1035), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55566,13 +55450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -55580,7 +55464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [19989] = 17, + [19881] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55597,13 +55481,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1030), 1, + STATE(1029), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55621,13 +55505,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 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, + [19953] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + anon_sym___attribute__, + ACTIONS(1921), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1924), 1, + anon_sym___declspec, + ACTIONS(1927), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1915), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(1913), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(643), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -55635,7 +55554,19 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20061] = 17, + ACTIONS(1911), 11, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20009] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55652,13 +55583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(696), 1, + STATE(703), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1040), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55676,13 +55607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(650), 7, + STATE(645), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -55690,7 +55621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20133] = 16, + [20081] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55707,11 +55638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(716), 1, + STATE(700), 1, sym__type_specifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(45), 4, anon_sym_const, @@ -55729,13 +55660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(646), 7, + STATE(643), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -55743,42 +55674,42 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20202] = 19, + [20150] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1387), 1, anon_sym_LPAREN2, - ACTIONS(1192), 1, + ACTIONS(1389), 1, anon_sym_STAR, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(1748), 1, + ACTIONS(1938), 1, anon_sym_LBRACK, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1034), 1, + STATE(1024), 1, sym__declarator, - STATE(1115), 1, + STATE(1108), 1, sym__abstract_declarator, - STATE(1143), 1, + STATE(1142), 1, sym_parameter_list, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - ACTIONS(1742), 2, + ACTIONS(1932), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(836), 2, + STATE(831), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(843), 2, + STATE(833), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1744), 3, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -55787,29 +55718,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1141), 4, + STATE(1143), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [20276] = 5, + [20224] = 5, ACTIONS(3), 1, sym_comment, - STATE(652), 2, + STATE(647), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1754), 4, + ACTIONS(1944), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1750), 7, + ACTIONS(1940), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -55817,7 +55748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1752), 19, + ACTIONS(1942), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -55837,38 +55768,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [20320] = 12, + [20268] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1640), 4, + ACTIONS(1821), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1638), 13, + ACTIONS(1819), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -55878,91 +55805,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [20377] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1763), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1664), 6, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20448] = 11, + [20321] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1578), 4, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1869), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1574), 15, + ACTIONS(1867), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -55972,143 +55852,153 @@ 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_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20503] = 12, + [20378] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - STATE(600), 1, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1578), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1574), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1757), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [20560] = 14, + [20451] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - STATE(600), 1, - sym_argument_list, - ACTIONS(1578), 2, + ACTIONS(1959), 1, anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1582), 2, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1777), 2, + ACTIONS(1965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1574), 11, + ACTIONS(1819), 8, 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_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20621] = 15, + [20518] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - STATE(600), 1, - sym_argument_list, - ACTIONS(1578), 2, + ACTIONS(1821), 1, anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1582), 2, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1574), 9, + ACTIONS(1819), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -56118,234 +56008,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20684] = 16, + [20583] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1773), 1, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, anon_sym_AMP, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1574), 9, + ACTIONS(1819), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20749] = 17, + [20652] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1821), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1574), 8, + ACTIONS(1819), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20816] = 17, + [20715] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1769), 1, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1574), 8, + ACTIONS(1831), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20883] = 18, + [20786] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1821), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1574), 7, + ACTIONS(1819), 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_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20952] = 10, + [20847] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1578), 6, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1574), 15, + ACTIONS(1819), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -56355,105 +56247,108 @@ 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_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [21005] = 20, + [20904] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1821), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1586), 5, + ACTIONS(1819), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [21078] = 3, + anon_sym_QMARK, + [20971] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1759), 1, anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, + anon_sym_SLASH, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1821), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1819), 15, + 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(1783), 22, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21117] = 3, + anon_sym_QMARK, + [21026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 8, + ACTIONS(1975), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56461,8 +56356,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(1787), 22, + ACTIONS(1973), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -56485,10 +56381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21155] = 3, + [21065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 11, + ACTIONS(1977), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_const, @@ -56500,7 +56396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1793), 19, + ACTIONS(1979), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -56520,57 +56416,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [21193] = 3, + [21103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1795), 28, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, + ACTIONS(1983), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1799), 28, - 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_LBRACE, + anon_sym_COLON, + ACTIONS(1981), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56588,12 +56451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21267] = 3, + [21141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 1, + ACTIONS(1987), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1044), 28, + ACTIONS(1985), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56622,12 +56485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21304] = 3, + [21178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 1, + ACTIONS(1046), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1080), 28, + ACTIONS(1044), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56656,12 +56519,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21341] = 3, + [21215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 1, + ACTIONS(1991), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1072), 28, + ACTIONS(1989), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56690,12 +56553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21378] = 3, + [21252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(1995), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 28, + ACTIONS(1993), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56724,12 +56587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21415] = 3, + [21289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 1, + ACTIONS(1999), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1108), 28, + ACTIONS(1997), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56758,12 +56621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21452] = 3, + [21326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(2003), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1124), 28, + ACTIONS(2001), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56792,10 +56655,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21489] = 3, + [21363] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 7, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2005), 1, + anon_sym_COMMA, + ACTIONS(2007), 1, + anon_sym_RBRACE, + STATE(562), 1, + sym_argument_list, + STATE(1201), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1363), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -56803,7 +56719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1791), 22, + ACTIONS(1361), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -56826,23 +56742,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21526] = 3, + [21475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, + ACTIONS(1367), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1803), 28, - 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(1365), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56860,12 +56776,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21563] = 3, + [21512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 1, + ACTIONS(2011), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1807), 28, + ACTIONS(2009), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56894,12 +56810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21600] = 3, + [21549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 1, + ACTIONS(1082), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1811), 28, + ACTIONS(1080), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56928,12 +56844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21637] = 3, + [21586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1118), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1815), 28, + ACTIONS(1116), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56962,46 +56878,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1154), 22, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [21711] = 3, + [21623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, + ACTIONS(1042), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 28, + ACTIONS(1040), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57030,12 +56912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21748] = 3, + [21660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(2015), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1823), 28, + ACTIONS(2013), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57064,23 +56946,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21785] = 3, + [21697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1070), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1150), 22, + ACTIONS(1068), 28, + 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_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -57098,12 +56980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21822] = 3, + [21734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(1114), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1827), 28, + ACTIONS(1112), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57132,12 +57014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21859] = 3, + [21771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 1, + ACTIONS(2019), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 28, + ACTIONS(2017), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57166,23 +57048,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21896] = 3, + [21808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2023), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1835), 22, + ACTIONS(2021), 28, + 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_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -57200,118 +57082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21933] = 22, + [21845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_RBRACE, - STATE(600), 1, - sym_argument_list, - STATE(1213), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [22008] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_RPAREN, - STATE(600), 1, - sym_argument_list, - STATE(1206), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [22083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, + ACTIONS(2027), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1847), 28, + ACTIONS(2025), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57340,12 +57116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22120] = 3, + [21882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1853), 1, + ACTIONS(2031), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1851), 28, + ACTIONS(2029), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57374,12 +57150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22157] = 3, + [21919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(2035), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1855), 28, + ACTIONS(2033), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57408,23 +57184,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22194] = 3, + [21956] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2037), 1, + anon_sym_COMMA, + ACTIONS(2039), 1, + anon_sym_RPAREN, + STATE(562), 1, + sym_argument_list, + STATE(1189), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [22031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(1979), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1859), 28, - 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(1977), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -57442,918 +57271,1018 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22231] = 22, + [22068] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1843), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1863), 1, - anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - STATE(1155), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22306] = 21, + ACTIONS(2043), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [22141] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2037), 1, anon_sym_COMMA, - STATE(600), 1, + ACTIONS(2045), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + STATE(1182), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1867), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [22379] = 9, + [22216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2049), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2047), 22, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1869), 3, anon_sym___based, anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(43), 5, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2051), 28, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(1871), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(723), 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, - [22427] = 20, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1873), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [22497] = 21, + ACTIONS(2057), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2055), 28, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22327] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1875), 1, + ACTIONS(2059), 1, anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22569] = 20, + [22399] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - STATE(600), 1, + ACTIONS(2041), 1, + anon_sym_COMMA, + ACTIONS(2061), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1877), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [22639] = 21, + [22471] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1879), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2063), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22711] = 21, + [22543] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1881), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2065), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22783] = 21, + [22615] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1883), 1, + ACTIONS(2067), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22855] = 21, + [22687] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, - anon_sym_COMMA, - ACTIONS(1885), 1, - anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22927] = 21, + ACTIONS(2069), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [22757] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1887), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(2071), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22999] = 20, + [22829] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1889), 2, + ACTIONS(2073), 2, anon_sym_COMMA, anon_sym_RBRACE, - [23069] = 20, + [22899] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2075), 3, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + sym_identifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2077), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1891), 2, + anon_sym_SEMI, + anon_sym_COLON, + STATE(643), 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, + [22947] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2079), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2081), 6, anon_sym_COMMA, - anon_sym_RBRACE, - [23139] = 21, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(699), 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, + [22995] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1893), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2083), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23211] = 21, + [23067] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2085), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2087), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1580), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(643), 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, + [23115] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2089), 3, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(1865), 1, + sym_identifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2091), 6, anon_sym_COMMA, - ACTIONS(1895), 1, anon_sym_RPAREN, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [23283] = 21, + anon_sym_SEMI, + anon_sym_COLON, + STATE(702), 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, + [23163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1641), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1643), 26, + 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [23199] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1897), 1, + ACTIONS(2093), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23355] = 21, + [23271] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1899), 1, + ACTIONS(2095), 1, anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23427] = 21, + [23343] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, - anon_sym_COMMA, - ACTIONS(1901), 1, - anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + anon_sym_DASH_GT, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23499] = 3, + ACTIONS(2097), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [23413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(1645), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1448), 26, + ACTIONS(1647), 26, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -58380,1739 +58309,1594 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23535] = 21, + [23449] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1903), 1, + ACTIONS(2099), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23607] = 21, + [23521] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1905), 1, + ACTIONS(2101), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23679] = 21, + [23593] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1907), 1, + ACTIONS(2103), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23751] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1909), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1911), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(732), 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, - [23799] = 21, + [23665] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1913), 1, + ACTIONS(2105), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23871] = 21, + [23737] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1915), 1, + ACTIONS(2107), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23943] = 21, + [23809] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, - anon_sym_COMMA, - ACTIONS(1917), 1, - anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24015] = 21, + ACTIONS(2109), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [23879] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1919), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2111), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24087] = 21, + [23951] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1921), 1, + ACTIONS(2113), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24159] = 21, + [24023] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1923), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(2115), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24231] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1925), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1927), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(646), 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, - [24279] = 21, + [24095] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, - anon_sym_COMMA, - ACTIONS(1929), 1, - anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24351] = 20, + ACTIONS(2117), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [24165] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - STATE(600), 1, + ACTIONS(2041), 1, + anon_sym_COMMA, + ACTIONS(2119), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1931), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [24421] = 21, + [24237] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1933), 1, + ACTIONS(2121), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24493] = 21, + [24309] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1935), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24565] = 21, + [24381] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1937), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(2125), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1438), 26, - 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24673] = 21, + [24453] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1939), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2127), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24745] = 21, + [24525] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1941), 1, + ACTIONS(2129), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24817] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1943), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1945), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(646), 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, - [24865] = 21, + [24597] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1947), 1, + ACTIONS(2131), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24937] = 21, + [24669] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1949), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(2133), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25009] = 21, + [24741] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1951), 1, + ACTIONS(2135), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25081] = 21, + [24813] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1953), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2137), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25153] = 21, + [24885] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1955), 1, + ACTIONS(2139), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25225] = 21, + [24957] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1957), 1, + ACTIONS(2141), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25297] = 21, + [25029] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1959), 1, + ACTIONS(2143), 1, anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25369] = 21, + [25101] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1961), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2145), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25441] = 21, + [25173] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1963), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(2147), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25513] = 21, + [25245] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(2149), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25585] = 21, + [25317] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1967), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(2151), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25657] = 21, + [25389] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1865), 1, + ACTIONS(2041), 1, anon_sym_COMMA, - ACTIONS(1969), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2153), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25729] = 20, + [25461] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1508), 1, - anon_sym_RBRACK, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1977), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1995), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - STATE(600), 1, + ACTIONS(2041), 1, + anon_sym_COMMA, + ACTIONS(2155), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25798] = 20, + [25533] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1554), 1, - anon_sym_RBRACK, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1977), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1995), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - STATE(600), 1, + ACTIONS(2041), 1, + anon_sym_COMMA, + ACTIONS(2157), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25867] = 20, + [25605] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(1997), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2041), 1, + anon_sym_COMMA, + ACTIONS(2159), 1, + anon_sym_RPAREN, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25936] = 3, + [25677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 2, + ACTIONS(2035), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1815), 25, + ACTIONS(2033), 26, 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, @@ -60136,56 +59920,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25971] = 20, + [25712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1510), 1, - anon_sym_RBRACK, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, - anon_sym_LPAREN2, - ACTIONS(1975), 1, - anon_sym_SLASH, - ACTIONS(1977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, - anon_sym_AMP_AMP, - ACTIONS(1981), 1, - anon_sym_PIPE, - ACTIONS(1983), 1, - anon_sym_CARET, - ACTIONS(1985), 1, - anon_sym_AMP, - ACTIONS(1995), 1, - anon_sym_QMARK, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1991), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26040] = 3, + ACTIONS(1070), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1068), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25747] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1046), 2, @@ -60217,15 +59984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26075] = 3, + [25782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 1, + ACTIONS(1070), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1044), 26, + anon_sym_RBRACE, + ACTIONS(1068), 25, 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, @@ -60249,62 +60016,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26110] = 20, + [25817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(1999), 1, - anon_sym_SEMI, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26179] = 3, + ACTIONS(2049), 1, + anon_sym_LBRACK_LBRACK, + STATE(437), 1, + sym_string_literal, + ACTIONS(2161), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 2, + ACTIONS(1114), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1819), 25, + ACTIONS(1112), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60330,111 +60082,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26214] = 20, + [25891] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(2187), 1, + anon_sym_RBRACK, + ACTIONS(2189), 1, anon_sym_QMARK, - ACTIONS(2001), 1, - anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26283] = 20, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25960] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1747), 1, + anon_sym_RBRACK, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - ACTIONS(2003), 1, - anon_sym_COLON, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26352] = 3, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 2, + ACTIONS(2003), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2001), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1995), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1080), 25, + ACTIONS(1993), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60460,62 +60244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26387] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(2005), 1, - anon_sym_SEMI, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26456] = 3, + [26099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 2, + ACTIONS(1999), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1072), 25, + ACTIONS(1997), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60541,1001 +60276,646 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26491] = 20, + [26134] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1709), 1, + anon_sym_RBRACK, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1977), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1995), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - ACTIONS(2007), 1, - anon_sym_RBRACK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26560] = 20, + [26203] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1530), 1, - anon_sym_RBRACK, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1977), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1995), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - STATE(600), 1, + ACTIONS(2191), 1, + anon_sym_RBRACK, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26629] = 19, + [26272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(2003), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2001), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26307] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1977), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(1963), 1, anon_sym_AMP, - STATE(600), 1, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2193), 1, + anon_sym_COLON, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1664), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26696] = 20, + [26376] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2009), 1, + ACTIONS(2195), 1, anon_sym_COLON, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26765] = 20, + [26445] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, - anon_sym_AMP_AMP, - ACTIONS(1981), 1, - anon_sym_PIPE, - ACTIONS(1983), 1, - anon_sym_CARET, - ACTIONS(1985), 1, - anon_sym_AMP, - ACTIONS(1995), 1, - anon_sym_QMARK, - ACTIONS(2011), 1, - anon_sym_RBRACK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(1821), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(1819), 11, + 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(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26834] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1837), 1, - anon_sym_LBRACK_LBRACK, - STATE(444), 1, - sym_string_literal, - ACTIONS(2013), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1835), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26873] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [26496] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(2015), 1, - anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1821), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1819), 9, + 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, - [26942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1825), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1823), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26977] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + [26549] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1827), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27012] = 20, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, + anon_sym_SLASH, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1821), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2163), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2165), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2181), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2183), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1819), 7, + 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, + [26606] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1558), 1, + ACTIONS(1727), 1, anon_sym_RBRACK, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1977), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1995), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1082), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1080), 26, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1859), 26, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27151] = 20, + [26675] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1514), 1, - anon_sym_RBRACK, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, - anon_sym_AMP_AMP, - ACTIONS(1981), 1, - anon_sym_PIPE, - ACTIONS(1983), 1, - anon_sym_CARET, - ACTIONS(1985), 1, - anon_sym_AMP, - ACTIONS(1995), 1, - anon_sym_QMARK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(1821), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1833), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1831), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1795), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27290] = 5, + ACTIONS(1819), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [26734] = 16, ACTIONS(3), 1, sym_comment, - STATE(774), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2019), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2017), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(1783), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_primitive_type, - sym_identifier, - [27329] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2024), 1, - sym_identifier, - ACTIONS(2033), 1, - sym_primitive_type, - STATE(774), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2031), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2027), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1821), 1, + anon_sym_PIPE, + ACTIONS(1881), 1, anon_sym_LPAREN2, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2177), 1, + anon_sym_AMP, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2163), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2165), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2029), 13, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - [27372] = 20, + anon_sym_PERCENT, + ACTIONS(2179), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2181), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2183), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1819), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [26795] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, - anon_sym_RBRACK, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1821), 1, + anon_sym_PIPE, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, - anon_sym_AMP_AMP, - ACTIONS(1981), 1, - anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1995), 1, - anon_sym_QMARK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27441] = 12, + ACTIONS(1819), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [26858] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - STATE(600), 1, + ACTIONS(2173), 1, + anon_sym_PIPE, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_AMP, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1640), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1638), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2181), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1819), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [27494] = 20, + [26921] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2035), 1, + ACTIONS(2197), 1, anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1853), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1851), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1847), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1074), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1072), 26, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1857), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1855), 26, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27703] = 3, + [26990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 2, + ACTIONS(2011), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1799), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [27738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1799), 26, + ACTIONS(2009), 25, 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, @@ -61559,64 +60939,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27773] = 20, + [27025] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1586), 1, - anon_sym_RBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1995), 1, - anon_sym_QMARK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(2183), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1819), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [27090] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, + anon_sym_SLASH, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2165), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1821), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1819), 11, + 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(1993), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27842] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + [27139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, + ACTIONS(2019), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1847), 26, + anon_sym_RBRACE, + ACTIONS(2017), 25, 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, @@ -61640,15 +61057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27877] = 3, + [27174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1853), 1, + ACTIONS(2057), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1851), 26, + anon_sym_RBRACE, + ACTIONS(2055), 25, 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, @@ -61672,377 +61089,450 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27912] = 20, + [27209] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1526), 1, + ACTIONS(1741), 1, anon_sym_RBRACK, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1977), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1995), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27981] = 20, + [27278] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2037), 1, + ACTIONS(2199), 1, anon_sym_COLON, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28050] = 20, + [27347] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2039), 1, + ACTIONS(2201), 1, anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28119] = 20, + [27416] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 1, - anon_sym_RBRACK, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1977), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1995), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - STATE(600), 1, + ACTIONS(2203), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1795), 26, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28223] = 20, + [27485] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1757), 1, + anon_sym_RBRACK, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COLON, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28292] = 20, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27554] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(2043), 1, - anon_sym_COLON, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, + ACTIONS(1831), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28361] = 10, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(2019), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2017), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2013), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2051), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27726] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - STATE(600), 1, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2205), 1, + anon_sym_COLON, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1973), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1578), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1574), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [28410] = 3, + [27795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 1, + ACTIONS(1991), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 26, + ACTIONS(1989), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62069,15 +61559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28445] = 3, + [27830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 2, + ACTIONS(2023), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1855), 25, + ACTIONS(2021), 26, 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, @@ -62101,15 +61591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28480] = 3, + [27865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(2015), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1827), 26, + anon_sym_RBRACE, + ACTIONS(2013), 25, 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, @@ -62133,15 +61623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28515] = 3, + [27900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 2, + ACTIONS(1995), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1104), 25, + ACTIONS(1993), 26, 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, @@ -62165,21 +61655,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28550] = 3, + [27935] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1737), 1, + anon_sym_RBRACK, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, + anon_sym_SLASH, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, + anon_sym_AMP_AMP, + ACTIONS(2173), 1, + anon_sym_PIPE, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2163), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2165), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2179), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2181), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2183), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28004] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 2, + ACTIONS(2207), 1, + sym_identifier, + ACTIONS(2216), 1, + sym_primitive_type, + STATE(830), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2214), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2210), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1108), 25, - 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_COLON, + ACTIONS(2212), 13, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -62188,29 +61740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28585] = 5, + [28047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, + ACTIONS(1999), 1, anon_sym_LBRACK_LBRACK, - STATE(440), 1, - sym_string_literal, - ACTIONS(2013), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1835), 20, + ACTIONS(1997), 26, + 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_extern, anon_sym___attribute__, anon_sym___declspec, @@ -62231,444 +61772,650 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28624] = 20, + [28082] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2045), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2218), 1, + anon_sym_COLON, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28693] = 20, + [28151] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2047), 1, - anon_sym_SEMI, - STATE(600), 1, + ACTIONS(2220), 1, + anon_sym_COLON, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28762] = 20, + [28220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1987), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1985), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2027), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2025), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28290] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2049), 1, - anon_sym_COLON, - STATE(600), 1, + ACTIONS(2222), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28831] = 18, + [28359] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1979), 1, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(1963), 1, anon_sym_AMP, - STATE(600), 1, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2224), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1574), 3, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [28896] = 20, + [28428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(2011), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28463] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1729), 1, + anon_sym_RBRACK, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - ACTIONS(2051), 1, - anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28965] = 20, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28532] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2053), 1, - anon_sym_COLON, - STATE(600), 1, + ACTIONS(2226), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29034] = 17, + [28601] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1725), 1, + anon_sym_RBRACK, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1981), 1, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, + anon_sym_AMP_AMP, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(2177), 1, anon_sym_AMP, - STATE(600), 1, + ACTIONS(2189), 1, + anon_sym_QMARK, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1574), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [29097] = 17, + [28670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(2057), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2055), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2051), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28740] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1983), 1, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(1963), 1, anon_sym_AMP, - STATE(600), 1, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2228), 1, + anon_sym_COLON, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1574), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [29160] = 16, + [28809] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1717), 1, + anon_sym_RBRACK, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1985), 1, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, + anon_sym_AMP_AMP, + ACTIONS(2173), 1, + anon_sym_PIPE, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, anon_sym_AMP, - STATE(600), 1, + ACTIONS(2189), 1, + anon_sym_QMARK, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1574), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [29221] = 3, + [28878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(2049), 1, + anon_sym_LBRACK_LBRACK, + STATE(438), 1, + sym_string_literal, + ACTIONS(2161), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1823), 26, + anon_sym_RBRACE, + ACTIONS(1040), 25, 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, @@ -62692,111 +62439,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29256] = 15, + [28952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, - anon_sym_LPAREN2, - ACTIONS(1975), 1, - anon_sym_SLASH, - STATE(600), 1, - sym_argument_list, - ACTIONS(1578), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1991), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1574), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [29315] = 20, + ACTIONS(1118), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1116), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28987] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2055), 1, + ACTIONS(2230), 1, anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29384] = 3, + [29056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 2, + ACTIONS(2049), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1859), 25, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(435), 1, + sym_string_literal, + ACTIONS(2161), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2047), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -62817,15 +62554,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29419] = 3, + [29095] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2232), 1, + anon_sym_SEMI, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 26, + anon_sym_RBRACE, + ACTIONS(1080), 25, 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, @@ -62849,55 +62635,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29454] = 14, + [29199] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - STATE(600), 1, - sym_argument_list, - ACTIONS(1578), 2, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1582), 2, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2234), 1, + anon_sym_COLON, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1991), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1993), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1574), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [29511] = 3, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, + ACTIONS(1082), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1803), 26, + ACTIONS(1080), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62924,12 +62716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29546] = 3, + [29303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 1, + ACTIONS(1118), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1807), 26, + ACTIONS(1116), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62956,12 +62748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29581] = 3, + [29338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 1, + ACTIONS(1042), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1811), 26, + ACTIONS(1040), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62988,15 +62780,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29616] = 3, + [29373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 2, + ACTIONS(1046), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1803), 25, + ACTIONS(1044), 26, 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, @@ -63020,145 +62812,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29651] = 20, + [29408] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1723), 1, + anon_sym_RBRACK, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(1769), 1, + ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(1771), 1, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(1773), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1781), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - ACTIONS(2057), 1, - anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2181), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29720] = 12, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29477] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, + ACTIONS(1735), 1, + anon_sym_RBRACK, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(2167), 1, anon_sym_SLASH, - STATE(600), 1, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, + anon_sym_AMP_AMP, + ACTIONS(2173), 1, + anon_sym_PIPE, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1578), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1574), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2179), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2181), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2183), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [29773] = 11, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29546] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - STATE(600), 1, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2236), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1578), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1574), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [29824] = 3, + [29615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 2, + ACTIONS(1114), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1807), 25, + ACTIONS(1112), 26, 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, @@ -63182,64 +62991,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29859] = 20, + [29650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1761), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(2059), 1, - anon_sym_COLON, - STATE(600), 1, - sym_argument_list, - ACTIONS(1582), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1757), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1759), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1763), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29928] = 3, + ACTIONS(2035), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2033), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(1987), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 26, + anon_sym_RBRACE, + ACTIONS(1985), 25, 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, @@ -63263,64 +63055,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29963] = 20, + [29720] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1783), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2167), 1, anon_sym_SLASH, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(2061), 1, - anon_sym_SEMI, - STATE(600), 1, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1757), 2, + ACTIONS(2163), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1759), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1763), 2, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1869), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1867), 9, + 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, - [30032] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + [29773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 1, + ACTIONS(1991), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1108), 26, + anon_sym_RBRACE, + ACTIONS(1989), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2023), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2021), 25, 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, @@ -63344,12 +63160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30067] = 3, + [29843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(2031), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1124), 26, + ACTIONS(2029), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -63376,20 +63192,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30102] = 5, + [29878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, + ACTIONS(2049), 1, anon_sym_LBRACK_LBRACK, - STATE(442), 1, + STATE(436), 1, sym_string_literal, - ACTIONS(2013), 5, + ACTIONS(2161), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1835), 20, + ACTIONS(2047), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -63410,62 +63226,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30141] = 20, + [29917] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1520), 1, - anon_sym_RBRACK, - ACTIONS(1580), 1, - anon_sym_LBRACK, - ACTIONS(1691), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1975), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1977), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1979), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1981), 1, + ACTIONS(1959), 1, anon_sym_PIPE, - ACTIONS(1983), 1, + ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1985), 1, + ACTIONS(1963), 1, anon_sym_AMP, - ACTIONS(1995), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - STATE(600), 1, + ACTIONS(2238), 1, + anon_sym_SEMI, + STATE(562), 1, sym_argument_list, - ACTIONS(1582), 2, + ACTIONS(1789), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1584), 2, + ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1971), 2, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1973), 2, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29986] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2240), 1, + anon_sym_SEMI, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1987), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 2, + ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1991), 2, + ACTIONS(1969), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1993), 2, + [30055] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2242), 1, + anon_sym_SEMI, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30210] = 3, + ACTIONS(1965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 2, + ACTIONS(2027), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1124), 25, + ACTIONS(2025), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -63491,47 +63405,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30245] = 5, + [30159] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, - anon_sym_LBRACK_LBRACK, - STATE(441), 1, - sym_string_literal, - ACTIONS(2013), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1835), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30284] = 3, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_PIPE, + ACTIONS(1961), 1, + anon_sym_CARET, + ACTIONS(1963), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2244), 1, + anon_sym_SEMI, + STATE(562), 1, + sym_argument_list, + ACTIONS(1789), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1969), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 2, + ACTIONS(2031), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1811), 25, + ACTIONS(2029), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -63557,21 +63486,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30319] = 3, + [30263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + STATE(830), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2250), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2248), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1815), 26, - 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_COLON, + ACTIONS(2246), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -63580,40 +63518,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30354] = 15, + [30302] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1387), 1, anon_sym_LPAREN2, - ACTIONS(1192), 1, + ACTIONS(1389), 1, anon_sym_STAR, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(1748), 1, + ACTIONS(1938), 1, anon_sym_LBRACK, - STATE(1037), 1, + STATE(1027), 1, sym__declarator, - STATE(1111), 1, + STATE(1114), 1, sym__abstract_declarator, - STATE(1143), 1, + STATE(1142), 1, sym_parameter_list, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - ACTIONS(2063), 2, + ACTIONS(2253), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -63621,44 +63552,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1141), 4, + STATE(1143), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [30412] = 14, + [30360] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1034), 1, - sym__declarator, - STATE(1403), 1, + STATE(1067), 1, + sym__type_declarator, + STATE(1380), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(843), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(987), 2, + STATE(983), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1744), 3, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63667,39 +63598,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1080), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [30467] = 14, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [30415] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1026), 1, + STATE(1027), 1, sym__declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(984), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(996), 2, + STATE(990), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1744), 3, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63708,39 +63639,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [30522] = 14, + [30470] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1051), 1, - sym__field_declarator, - STATE(1331), 1, + STATE(1027), 1, + sym__declarator, + STATE(1398), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(841), 2, + STATE(842), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(989), 2, + STATE(984), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1744), 3, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63749,39 +63680,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1096), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [30577] = 14, + STATE(1073), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [30525] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1073), 1, - sym__type_declarator, - STATE(1385), 1, + STATE(1046), 1, + sym__field_declarator, + STATE(1326), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(988), 2, + STATE(985), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(996), 2, + STATE(990), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1744), 3, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63790,39 +63721,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1109), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [30632] = 14, + STATE(1087), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [30580] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, STATE(1052), 1, sym__field_declarator, - STATE(1331), 1, + STATE(1326), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(985), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(996), 2, + STATE(839), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1744), 3, + STATE(982), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63831,39 +63762,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1096), 5, + STATE(1087), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [30687] = 14, + [30635] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1069), 1, - sym__type_declarator, - STATE(1385), 1, + STATE(1042), 1, + sym__field_declarator, + STATE(1326), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(844), 2, + STATE(835), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(991), 2, + STATE(979), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1744), 3, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63872,39 +63803,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1109), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [30742] = 14, + STATE(1087), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [30690] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1037), 1, + STATE(1024), 1, sym__declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(983), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(996), 2, + STATE(833), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1744), 3, + STATE(986), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63913,39 +63844,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [30797] = 14, + [30745] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1062), 1, - sym__type_declarator, - STATE(1385), 1, + STATE(1042), 1, + sym__field_declarator, + STATE(1326), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(990), 2, + STATE(979), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(996), 2, + STATE(990), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1744), 3, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63954,39 +63885,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1109), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [30852] = 14, + STATE(1087), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [30800] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1062), 1, + STATE(1058), 1, sym__type_declarator, - STATE(1385), 1, + STATE(1380), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(840), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(990), 2, + STATE(978), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1744), 3, + STATE(990), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -63995,39 +63926,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1109), 5, + STATE(1098), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [30907] = 14, + [30855] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1052), 1, - sym__field_declarator, - STATE(1331), 1, + STATE(1069), 1, + sym__type_declarator, + STATE(1380), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(847), 2, + STATE(840), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(985), 2, + STATE(980), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1744), 3, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -64036,39 +63967,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1096), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [30962] = 14, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [30910] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1053), 1, - sym__field_declarator, - STATE(1331), 1, + STATE(1038), 1, + sym__declarator, + STATE(1398), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(986), 2, + STATE(981), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(996), 2, + STATE(990), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1744), 3, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -64077,39 +64008,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1096), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [31017] = 14, + STATE(1073), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [30965] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1037), 1, - sym__declarator, - STATE(1403), 1, + STATE(1069), 1, + sym__type_declarator, + STATE(1380), 1, sym_ms_based_modifier, - ACTIONS(1746), 2, + ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(838), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(983), 2, + STATE(980), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1744), 3, + STATE(990), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -64118,13 +64049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1080), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [31072] = 10, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [31020] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64133,12 +64064,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2081), 1, + ACTIONS(2271), 1, anon_sym_SEMI, - ACTIONS(1869), 2, + ACTIONS(2089), 2, anon_sym___based, sym_identifier, - ACTIONS(1871), 2, + ACTIONS(2091), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(45), 4, @@ -64152,7 +64083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(723), 7, + STATE(702), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64160,7 +64091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [31118] = 10, + [31066] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64169,12 +64100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2273), 1, anon_sym_SEMI, - ACTIONS(1869), 2, + ACTIONS(2089), 2, anon_sym___based, sym_identifier, - ACTIONS(1871), 2, + ACTIONS(2091), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(45), 4, @@ -64188,7 +64119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(723), 7, + STATE(702), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64196,7 +64127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [31164] = 10, + [31112] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64205,12 +64136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2275), 1, anon_sym_SEMI, - ACTIONS(1869), 2, + ACTIONS(2089), 2, anon_sym___based, sym_identifier, - ACTIONS(1871), 2, + ACTIONS(2091), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(45), 4, @@ -64224,7 +64155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(723), 7, + STATE(702), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64232,7 +64163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [31210] = 10, + [31158] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64241,12 +64172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(862), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2277), 1, anon_sym_SEMI, - ACTIONS(1869), 2, + ACTIONS(2089), 2, anon_sym___based, sym_identifier, - ACTIONS(1871), 2, + ACTIONS(2091), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(45), 4, @@ -64260,7 +64191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(723), 7, + STATE(702), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64268,14 +64199,14 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [31256] = 5, + [31204] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2283), 1, anon_sym_LBRACE, - STATE(872), 1, - sym_field_declaration_list, - ACTIONS(2091), 7, + STATE(881), 1, + sym_enumerator_list, + ACTIONS(2281), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64283,7 +64214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2089), 14, + ACTIONS(2279), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64298,14 +64229,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31291] = 5, + [31239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(2289), 1, anon_sym_LBRACE, - STATE(895), 1, - sym_enumerator_list, - ACTIONS(2097), 7, + STATE(886), 1, + sym_field_declaration_list, + ACTIONS(2287), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64313,7 +64244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2095), 14, + ACTIONS(2285), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64328,7 +64259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31326] = 13, + [31274] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64339,15 +64270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(997), 1, + STATE(987), 1, sym__type_specifier, - STATE(999), 1, + STATE(994), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1363), 1, + STATE(1358), 1, sym_type_descriptor, - STATE(860), 2, + STATE(855), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64355,25 +64286,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1148), 4, + ACTIONS(1345), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31377] = 5, + [31325] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2289), 1, anon_sym_LBRACE, - STATE(885), 1, + STATE(876), 1, sym_field_declaration_list, - ACTIONS(2103), 7, + ACTIONS(2293), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64381,7 +64312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2101), 14, + ACTIONS(2291), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64396,14 +64327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31412] = 5, + [31360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2289), 1, anon_sym_LBRACE, - STATE(871), 1, + STATE(891), 1, sym_field_declaration_list, - ACTIONS(2107), 7, + ACTIONS(2297), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64411,7 +64342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2105), 14, + ACTIONS(2295), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64426,14 +64357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31447] = 5, + [31395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2289), 1, anon_sym_LBRACE, - STATE(883), 1, + STATE(873), 1, sym_field_declaration_list, - ACTIONS(2111), 7, + ACTIONS(2301), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64441,7 +64372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2109), 14, + ACTIONS(2299), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64456,7 +64387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31482] = 12, + [31430] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64467,13 +64398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1024), 1, + STATE(1034), 1, sym__type_specifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64486,13 +64417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31530] = 12, + [31478] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64503,13 +64434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(994), 1, + STATE(992), 1, sym__type_specifier, - STATE(999), 1, + STATE(994), 1, aux_sym_sized_type_specifier_repeat1, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64517,18 +64448,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1148), 4, + ACTIONS(1345), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31578] = 12, + [31526] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2305), 1, + anon_sym_LPAREN2, + STATE(928), 1, + sym_preproc_argument_list, + ACTIONS(2307), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2303), 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, + [31560] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64539,13 +64499,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1020), 1, sym__type_specifier, - STATE(862), 2, + STATE(863), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64558,13 +64518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31626] = 12, + [31608] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64575,13 +64535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1041), 1, + STATE(1018), 1, sym__type_specifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64594,13 +64554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31674] = 12, + [31656] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64611,13 +64571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1029), 1, + STATE(1023), 1, sym__type_specifier, - STATE(886), 2, + STATE(854), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64630,13 +64590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31722] = 12, + [31704] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64647,13 +64607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1039), 1, + STATE(1031), 1, sym__type_specifier, - STATE(863), 2, + STATE(858), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64666,13 +64626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31770] = 12, + [31752] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64683,13 +64643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1023), 1, + STATE(1013), 1, sym__type_specifier, - STATE(859), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64702,13 +64662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31818] = 12, + [31800] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64719,13 +64679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1037), 1, sym__type_specifier, - STATE(886), 2, + STATE(861), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64738,42 +64698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31866] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2115), 1, - anon_sym_LPAREN2, - STATE(913), 1, - sym_preproc_argument_list, - ACTIONS(2117), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2113), 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, - [31900] = 12, + [31848] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64784,13 +64715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1198), 1, + ACTIONS(1395), 1, sym_identifier, - STATE(775), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1025), 1, + STATE(1039), 1, sym__type_specifier, - STATE(866), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64803,24 +64734,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(881), 5, + STATE(882), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31948] = 3, + [31896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 7, + ACTIONS(2309), 1, + anon_sym_LPAREN2, + ACTIONS(1453), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2119), 14, + ACTIONS(1437), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64835,10 +64767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31977] = 3, + [31927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 7, + ACTIONS(2314), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64846,7 +64778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2123), 14, + ACTIONS(2312), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64861,10 +64793,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32006] = 3, + [31956] = 5, + ACTIONS(2303), 1, + anon_sym_LF, + ACTIONS(2316), 1, + anon_sym_LPAREN2, + ACTIONS(2318), 1, + sym_comment, + STATE(968), 1, + sym_preproc_argument_list, + ACTIONS(2307), 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, + [31989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 7, + ACTIONS(2322), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64872,7 +64832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2127), 14, + ACTIONS(2320), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64887,10 +64847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32035] = 3, + [32018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 7, + ACTIONS(2326), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64898,7 +64858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2131), 14, + ACTIONS(2324), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64913,10 +64873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32064] = 3, + [32047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 7, + ACTIONS(2330), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64924,7 +64884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2135), 14, + ACTIONS(2328), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64939,10 +64899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32093] = 3, + [32076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 7, + ACTIONS(2334), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64950,7 +64910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2139), 14, + ACTIONS(2332), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64965,47 +64925,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32122] = 5, - ACTIONS(2113), 1, - anon_sym_LF, - ACTIONS(2143), 1, - anon_sym_LPAREN2, - ACTIONS(2145), 1, + [32105] = 10, + ACTIONS(3), 1, sym_comment, - STATE(957), 1, - sym_preproc_argument_list, - ACTIONS(2117), 18, + ACTIONS(2336), 1, + sym_identifier, + ACTIONS(2338), 1, + anon_sym_RPAREN, + ACTIONS(2340), 1, + anon_sym_LPAREN2, + ACTIONS(2342), 1, + anon_sym_defined, + ACTIONS(2348), 1, + sym_number_literal, + ACTIONS(2344), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2346), 2, 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, - [32155] = 4, + ACTIONS(2350), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(878), 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, + [32148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - anon_sym_LPAREN2, - ACTIONS(1253), 6, + ACTIONS(2354), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1240), 14, + ACTIONS(2352), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65020,10 +64984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32186] = 3, + [32177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 7, + ACTIONS(2358), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65031,7 +64995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2150), 14, + ACTIONS(2356), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65046,10 +65010,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32215] = 3, + [32206] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2360), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1942), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(1940), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32239] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2363), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, + anon_sym_RPAREN, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2373), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2375), 1, + anon_sym_AMP_AMP, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2379), 1, + anon_sym_CARET, + ACTIONS(2381), 1, + anon_sym_AMP, + STATE(1181), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 7, + ACTIONS(2393), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65057,7 +65088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2154), 14, + ACTIONS(2391), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65072,10 +65103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32244] = 3, + [32323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(2397), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65083,7 +65114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2158), 14, + ACTIONS(2395), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65098,10 +65129,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32273] = 3, + [32352] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2363), 1, + anon_sym_COMMA, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2373), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2375), 1, + anon_sym_AMP_AMP, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2379), 1, + anon_sym_CARET, + ACTIONS(2381), 1, + anon_sym_AMP, + ACTIONS(2399), 1, + anon_sym_RPAREN, + STATE(1155), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 7, + ACTIONS(2403), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65109,7 +65179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2162), 14, + ACTIONS(2401), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65124,10 +65194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32302] = 3, + [32436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 7, + ACTIONS(2407), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65135,7 +65205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2166), 14, + ACTIONS(2405), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65150,49 +65220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32331] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2170), 1, - anon_sym_COMMA, - ACTIONS(2172), 1, - anon_sym_RPAREN, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2180), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2182), 1, - anon_sym_AMP_AMP, - ACTIONS(2184), 1, - anon_sym_PIPE, - ACTIONS(2186), 1, - anon_sym_CARET, - ACTIONS(2188), 1, - anon_sym_AMP, - STATE(1207), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2190), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2192), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2194), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2196), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32386] = 3, + [32465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2200), 7, + ACTIONS(2411), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65200,7 +65231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2198), 14, + ACTIONS(2409), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65215,10 +65246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32415] = 3, + [32494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 7, + ACTIONS(2415), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65226,7 +65257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2202), 14, + ACTIONS(2413), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65241,10 +65272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32444] = 3, + [32523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 7, + ACTIONS(2419), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65252,7 +65283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2206), 14, + ACTIONS(2417), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65267,25 +65298,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32473] = 5, + [32552] = 3, ACTIONS(3), 1, sym_comment, - STATE(886), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2210), 4, + ACTIONS(2423), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2421), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1752), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(1750), 10, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -65295,10 +65324,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32506] = 3, + [32581] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 7, + ACTIONS(2336), 1, + sym_identifier, + ACTIONS(2340), 1, + anon_sym_LPAREN2, + ACTIONS(2342), 1, + anon_sym_defined, + ACTIONS(2425), 1, + anon_sym_RPAREN, + ACTIONS(2427), 1, + sym_number_literal, + ACTIONS(2344), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2346), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2350), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(875), 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, + [32624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2431), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65306,7 +65368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2213), 14, + ACTIONS(2429), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65321,10 +65383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32535] = 3, + [32653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 7, + ACTIONS(2435), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65332,7 +65394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2217), 14, + ACTIONS(2433), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65347,82 +65409,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32564] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2223), 1, - anon_sym_RPAREN, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - anon_sym_defined, - ACTIONS(2233), 1, - sym_number_literal, - ACTIONS(2229), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2231), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2235), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(882), 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, - [32607] = 16, + [32682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 1, + ACTIONS(2439), 7, anon_sym_COMMA, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2180), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2182), 1, - anon_sym_AMP_AMP, - ACTIONS(2184), 1, - anon_sym_PIPE, - ACTIONS(2186), 1, - anon_sym_CARET, - ACTIONS(2188), 1, - anon_sym_AMP, - ACTIONS(2237), 1, anon_sym_RPAREN, - STATE(1183), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2190), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2192), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2194), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2196), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32662] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2437), 14, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [32711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 7, + ACTIONS(2443), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65430,7 +65446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2239), 14, + ACTIONS(2441), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65445,10 +65461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32691] = 3, + [32740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2447), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65456,7 +65472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2243), 14, + ACTIONS(2445), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65471,10 +65487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32720] = 3, + [32769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 7, + ACTIONS(2451), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65482,7 +65498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2247), 14, + ACTIONS(2449), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65497,32 +65513,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32749] = 10, + [32798] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2336), 1, + sym_identifier, + ACTIONS(2340), 1, + anon_sym_LPAREN2, + ACTIONS(2342), 1, + anon_sym_defined, + ACTIONS(2453), 1, + sym_number_literal, + ACTIONS(2344), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2346), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2350), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(932), 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, + [32838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 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, + [32866] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2457), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2455), 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, + [32906] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2336), 1, + sym_identifier, + ACTIONS(2340), 1, + anon_sym_LPAREN2, + ACTIONS(2342), 1, + anon_sym_defined, + ACTIONS(2459), 1, + sym_number_literal, + ACTIONS(2344), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2346), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2350), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(898), 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, + [32946] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2375), 1, + anon_sym_AMP_AMP, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2379), 1, + anon_sym_CARET, + ACTIONS(2381), 1, + anon_sym_AMP, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2455), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [32994] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2336), 1, + sym_identifier, + ACTIONS(2340), 1, + anon_sym_LPAREN2, + ACTIONS(2342), 1, + anon_sym_defined, + ACTIONS(2461), 1, + sym_number_literal, + ACTIONS(2344), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2346), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2350), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(896), 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, + [33034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 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, + [33062] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2463), 1, + sym_identifier, + ACTIONS(2465), 1, + anon_sym_LPAREN2, + ACTIONS(2467), 1, + anon_sym_defined, + ACTIONS(2473), 1, + sym_number_literal, + ACTIONS(2469), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2471), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2475), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(957), 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, + [33102] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2251), 1, - anon_sym_RPAREN, - ACTIONS(2253), 1, + ACTIONS(2477), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(890), 7, + STATE(923), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65530,68 +65784,100 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [32792] = 3, + [33142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 7, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2457), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + 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, + [33174] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2255), 14, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [32821] = 3, + anon_sym_PERCENT, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2457), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 9, + 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, + [33210] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2259), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32850] = 3, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2457), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2455), 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, + [33244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 5, + ACTIONS(2481), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2263), 15, + ACTIONS(2479), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -65607,30 +65893,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [32878] = 9, + [33272] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2267), 1, + ACTIONS(2483), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(946), 7, + STATE(975), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65638,30 +65924,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [32918] = 9, + [33312] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2279), 1, + ACTIONS(2485), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(970), 7, + STATE(950), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65669,30 +65955,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [32958] = 9, + [33352] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2283), 1, + ACTIONS(2487), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(971), 7, + STATE(917), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65700,61 +65986,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [32998] = 9, + [33392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_LPAREN2, - ACTIONS(2273), 1, - anon_sym_defined, - ACTIONS(2285), 1, - sym_number_literal, - ACTIONS(2275), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2491), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2489), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(981), 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, - [33038] = 9, + 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, + [33420] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2287), 1, + ACTIONS(2493), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(955), 7, + STATE(969), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65762,30 +66042,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33078] = 9, + [33460] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2289), 1, + ACTIONS(2495), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(972), 7, + STATE(921), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65793,30 +66073,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33118] = 9, + [33500] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2291), 1, + ACTIONS(2497), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(958), 7, + STATE(925), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65824,30 +66104,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33158] = 9, + [33540] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2293), 1, + ACTIONS(2499), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(973), 7, + STATE(913), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65855,66 +66135,63 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33198] = 14, + [33580] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2371), 1, anon_sym_SLASH, - ACTIONS(2180), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2182), 1, - anon_sym_AMP_AMP, - ACTIONS(2184), 1, - anon_sym_PIPE, - ACTIONS(2186), 1, - anon_sym_CARET, - ACTIONS(2188), 1, + ACTIONS(2381), 1, anon_sym_AMP, - ACTIONS(2174), 2, + ACTIONS(2457), 1, + anon_sym_PIPE, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2176), 2, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2190), 2, + ACTIONS(2383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2192), 2, + ACTIONS(2385), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2194), 2, + ACTIONS(2387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2196), 2, + ACTIONS(2389), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2295), 2, + ACTIONS(2455), 5, anon_sym_COMMA, anon_sym_RPAREN, - [33248] = 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [33624] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2297), 1, + ACTIONS(2501), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(978), 7, + STATE(894), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65922,30 +66199,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33288] = 9, + [33664] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2299), 1, + ACTIONS(2503), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(954), 7, + STATE(902), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65953,30 +66230,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33328] = 9, + [33704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2301), 1, + ACTIONS(2505), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(961), 7, + STATE(903), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65984,30 +66261,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33368] = 9, + [33744] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2379), 1, + anon_sym_CARET, + ACTIONS(2381), 1, + anon_sym_AMP, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2455), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [33790] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2303), 1, + ACTIONS(2507), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(963), 7, + STATE(962), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66015,24 +66326,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33408] = 9, + [33830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2305), 1, + ACTIONS(2509), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -66046,30 +66357,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33448] = 9, + [33870] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2336), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2340), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2342), 1, anon_sym_defined, - ACTIONS(2307), 1, + ACTIONS(2511), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2344), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2350), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(966), 7, + STATE(901), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66077,72 +66388,81 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33488] = 3, + [33910] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 5, + ACTIONS(2371), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(2379), 1, + anon_sym_CARET, + ACTIONS(2381), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2309), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2457), 1, + anon_sym_PIPE, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33516] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2192), 2, + ACTIONS(2385), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2194), 2, + ACTIONS(2387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2196), 2, + ACTIONS(2389), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2313), 7, + ACTIONS(2455), 4, 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, - [33556] = 3, + [33956] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 5, + ACTIONS(2463), 1, + sym_identifier, + ACTIONS(2465), 1, + anon_sym_LPAREN2, + ACTIONS(2467), 1, + anon_sym_defined, + ACTIONS(2513), 1, + sym_number_literal, + ACTIONS(2469), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2471), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2475), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(970), 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, + [33996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2517), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2317), 15, + ACTIONS(2515), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66158,16 +66478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [33584] = 3, + [34024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 5, + ACTIONS(2521), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1560), 15, + ACTIONS(2519), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66183,30 +66503,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [33612] = 9, + [34052] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2373), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2375), 1, + anon_sym_AMP_AMP, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2379), 1, + anon_sym_CARET, + ACTIONS(2381), 1, + anon_sym_AMP, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2523), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [34102] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2321), 1, + ACTIONS(2525), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(959), 7, + STATE(966), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66214,16 +66570,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33652] = 3, + [34142] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1387), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_STAR, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(1930), 1, + sym_identifier, + ACTIONS(1938), 1, + anon_sym_LBRACK, + STATE(1079), 1, + sym__declarator, + STATE(1113), 1, + sym__abstract_declarator, + STATE(1142), 1, + sym_parameter_list, + STATE(1398), 1, + sym_ms_based_modifier, + ACTIONS(2527), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1143), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1073), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [34190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 5, + ACTIONS(2531), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2323), 15, + ACTIONS(2529), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66239,92 +66630,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [33680] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - anon_sym_defined, - ACTIONS(2327), 1, - sym_number_literal, - ACTIONS(2229), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2231), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2235), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(938), 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, - [33720] = 9, + [34218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - anon_sym_defined, - ACTIONS(2329), 1, - sym_number_literal, - ACTIONS(2229), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2535), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2533), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(942), 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, - [33760] = 9, + 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, + [34246] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2331), 1, + ACTIONS(2537), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(943), 7, + STATE(959), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66332,92 +66686,87 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33800] = 9, + [34286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - anon_sym_defined, - ACTIONS(2333), 1, - sym_number_literal, - ACTIONS(2229), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2541), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2539), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(944), 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, - [33840] = 9, + 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, + [34314] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - anon_sym_defined, - ACTIONS(2335), 1, - sym_number_literal, - ACTIONS(2229), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2367), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(945), 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, - [33880] = 9, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2457), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2455), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [34356] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2337), 1, + ACTIONS(2543), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(969), 7, + STATE(958), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66425,30 +66774,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33920] = 9, + [34396] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2339), 1, + ACTIONS(2545), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(982), 7, + STATE(956), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66456,30 +66805,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33960] = 9, + [34436] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2341), 1, + ACTIONS(2547), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(947), 7, + STATE(971), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66487,30 +66836,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34000] = 9, + [34476] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2343), 1, + ACTIONS(2549), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(914), 7, + STATE(961), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66518,30 +66867,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34040] = 9, + [34516] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2345), 1, + ACTIONS(2551), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(949), 7, + STATE(974), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66549,61 +66898,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34080] = 9, + [34556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - anon_sym_defined, - ACTIONS(2347), 1, - sym_number_literal, - ACTIONS(2229), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2555), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2553), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(951), 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, - [34120] = 9, + 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, + [34584] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2349), 1, + ACTIONS(2557), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(968), 7, + STATE(949), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66611,30 +66954,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34160] = 9, + [34624] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2351), 1, + ACTIONS(2559), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(977), 7, + STATE(973), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66642,80 +66985,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2353), 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, - [34228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2357), 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, - [34256] = 9, + [34664] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2361), 1, + ACTIONS(2561), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(906), 7, + STATE(955), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66723,65 +67016,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34296] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, - anon_sym_LPAREN2, - ACTIONS(1192), 1, - anon_sym_STAR, - ACTIONS(1194), 1, - anon_sym___based, - ACTIONS(1740), 1, - sym_identifier, - ACTIONS(1748), 1, - anon_sym_LBRACK, - STATE(1087), 1, - sym__declarator, - STATE(1119), 1, - sym__abstract_declarator, - STATE(1143), 1, - sym_parameter_list, - STATE(1403), 1, - sym_ms_based_modifier, - ACTIONS(2363), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1141), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1080), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [34344] = 9, + [34704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2365), 1, + ACTIONS(2563), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(956), 7, + STATE(972), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66789,24 +67047,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34384] = 9, + [34744] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2367), 1, + ACTIONS(2565), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -66820,82 +67078,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34424] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2315), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2313), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - 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, - [34456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2369), 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, - [34484] = 9, + [34784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2373), 1, + ACTIONS(2567), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(960), 7, + STATE(964), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66903,30 +67109,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34524] = 9, + [34824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2273), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2375), 1, + ACTIONS(2569), 1, sym_number_literal, - ACTIONS(2275), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2277), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2281), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(974), 7, + STATE(976), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66934,277 +67140,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2313), 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, - [34592] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2182), 1, - anon_sym_AMP_AMP, - ACTIONS(2184), 1, - anon_sym_PIPE, - ACTIONS(2186), 1, - anon_sym_CARET, - ACTIONS(2188), 1, - anon_sym_AMP, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2190), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2192), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2194), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2196), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2313), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [34640] = 12, + [34864] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2184), 1, - anon_sym_PIPE, - ACTIONS(2186), 1, - anon_sym_CARET, - ACTIONS(2188), 1, - anon_sym_AMP, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2190), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2192), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2194), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2196), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2313), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [34686] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2186), 1, - anon_sym_CARET, - ACTIONS(2188), 1, - anon_sym_AMP, - ACTIONS(2315), 1, - anon_sym_PIPE, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2190), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2192), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2194), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2196), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2313), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [34732] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2188), 1, - anon_sym_AMP, - ACTIONS(2315), 1, - anon_sym_PIPE, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2190), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2192), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2194), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2196), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2313), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [34776] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2190), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2192), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2194), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2196), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2315), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2313), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [34818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2377), 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, - [34846] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2196), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2315), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2313), 9, - 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, - [34882] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2465), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2467), 1, anon_sym_defined, - ACTIONS(2381), 1, + ACTIONS(2571), 1, sym_number_literal, - ACTIONS(2229), 2, + ACTIONS(2469), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2231), 2, + ACTIONS(2471), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2235), 5, + ACTIONS(2475), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(918), 7, + STATE(947), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -67212,183 +67171,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34922] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2315), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2313), 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, - [34956] = 3, - ACTIONS(2145), 1, + [34904] = 12, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2317), 1, - anon_sym_LF, - ACTIONS(2319), 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, - [34983] = 3, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2263), 1, + ACTIONS(2573), 1, anon_sym_LF, - ACTIONS(2265), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2579), 1, anon_sym_PIPE_PIPE, + ACTIONS(2581), 1, anon_sym_AMP_AMP, + ACTIONS(2583), 1, anon_sym_PIPE, + ACTIONS(2585), 1, anon_sym_CARET, + ACTIONS(2587), 1, 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, - [35010] = 6, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2313), 1, - anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2385), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2315), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [35043] = 12, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2389), 1, - anon_sym_LF, - ACTIONS(2391), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, - anon_sym_AMP_AMP, - ACTIONS(2395), 1, - anon_sym_PIPE, - ACTIONS(2397), 1, - anon_sym_CARET, - ACTIONS(2399), 1, - anon_sym_AMP, - ACTIONS(2383), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2387), 2, + ACTIONS(2593), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 3, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2403), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [35088] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2180), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2182), 1, - anon_sym_AMP_AMP, - ACTIONS(2184), 1, - anon_sym_PIPE, - ACTIONS(2186), 1, - anon_sym_CARET, - ACTIONS(2188), 1, - anon_sym_AMP, - ACTIONS(2405), 1, - anon_sym_RPAREN, - ACTIONS(2174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2190), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2192), 2, + anon_sym_PERCENT, + ACTIONS(2591), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(2194), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2196), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35137] = 3, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2309), 1, + anon_sym_LT, + [34949] = 3, + ACTIONS(1871), 1, anon_sym_LF, - ACTIONS(2311), 18, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(1873), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67407,78 +67228,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35164] = 12, - ACTIONS(2145), 1, + [34976] = 10, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2391), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, - anon_sym_AMP_AMP, - ACTIONS(2395), 1, - anon_sym_PIPE, - ACTIONS(2397), 1, + ACTIONS(2455), 1, + anon_sym_LF, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2407), 1, - anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 3, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2457), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35209] = 12, - ACTIONS(2145), 1, + [35017] = 12, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2579), 1, anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, + ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2395), 1, + ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2397), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2409), 1, + ACTIONS(2595), 1, anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 3, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35254] = 3, - ACTIONS(2145), 1, + [35062] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2323), 1, + ACTIONS(2533), 1, anon_sym_LF, - ACTIONS(2325), 18, + ACTIONS(2535), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67497,27 +67316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35281] = 7, - ACTIONS(2145), 1, + [35089] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2553), 1, anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2555), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(2315), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67525,12 +67334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [35316] = 3, - ACTIONS(2145), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35116] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(2539), 1, anon_sym_LF, - ACTIONS(2359), 18, + ACTIONS(2541), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67549,326 +67364,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35343] = 8, - ACTIONS(2145), 1, + [35143] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2489), 1, anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2491), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(2315), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [35380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2414), 1, - anon_sym_LPAREN2, - ACTIONS(2418), 1, - anon_sym_LBRACK, - ACTIONS(1253), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(2411), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1240), 13, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [35413] = 9, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2313), 1, - anon_sym_LF, - ACTIONS(2399), 1, - anon_sym_AMP, - ACTIONS(2383), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2315), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35452] = 10, - ACTIONS(2145), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35170] = 8, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2455), 1, anon_sym_LF, - ACTIONS(2397), 1, - anon_sym_CARET, - ACTIONS(2399), 1, - anon_sym_AMP, - ACTIONS(2383), 2, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2315), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(2385), 3, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35493] = 12, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2391), 1, + ACTIONS(2457), 5, anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, anon_sym_AMP_AMP, - ACTIONS(2395), 1, anon_sym_PIPE, - ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2421), 1, + [35207] = 3, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(2455), 1, anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2457), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + 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, - [35538] = 12, - ACTIONS(2145), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35234] = 12, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2579), 1, anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, + ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2395), 1, + ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2397), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2423), 1, + ACTIONS(2597), 1, anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 3, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35583] = 12, - ACTIONS(2145), 1, + [35279] = 4, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2455), 1, + anon_sym_LF, + ACTIONS(2577), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2457), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, anon_sym_AMP_AMP, - ACTIONS(2395), 1, anon_sym_PIPE, - ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2399), 1, anon_sym_AMP, - ACTIONS(2425), 1, - anon_sym_LF, - ACTIONS(2383), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2403), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35628] = 12, - ACTIONS(2145), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35308] = 12, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2579), 1, anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, + ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2395), 1, + ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2397), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2599), 1, anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 3, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35673] = 11, - ACTIONS(2145), 1, + [35353] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2479), 1, anon_sym_LF, - ACTIONS(2395), 1, - anon_sym_PIPE, - ACTIONS(2397), 1, - anon_sym_CARET, - ACTIONS(2399), 1, - anon_sym_AMP, - ACTIONS(2315), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2383), 2, + ACTIONS(2481), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + 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, - [35716] = 12, - ACTIONS(2145), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35380] = 11, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2455), 1, anon_sym_LF, - ACTIONS(2315), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, - anon_sym_AMP_AMP, - ACTIONS(2395), 1, + ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2397), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2383), 2, + ACTIONS(2457), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 3, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35761] = 3, - ACTIONS(2145), 1, + [35423] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2515), 1, anon_sym_LF, - ACTIONS(2315), 18, + ACTIONS(2517), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67887,18 +67612,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35788] = 4, - ACTIONS(2145), 1, + [35450] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2519), 1, anon_sym_LF, - ACTIONS(2385), 3, + ACTIONS(2521), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2315), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67912,17 +67636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35817] = 3, - ACTIONS(2145), 1, + [35477] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2455), 1, anon_sym_LF, - ACTIONS(2355), 18, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2457), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67936,76 +67662,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35844] = 3, - ACTIONS(2145), 1, + [35508] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LF, - ACTIONS(2379), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2371), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2373), 1, anon_sym_PIPE_PIPE, + ACTIONS(2375), 1, anon_sym_AMP_AMP, + ACTIONS(2377), 1, anon_sym_PIPE, + ACTIONS(2379), 1, anon_sym_CARET, + ACTIONS(2381), 1, anon_sym_AMP, + ACTIONS(2601), 1, + anon_sym_RPAREN, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2385), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(2389), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35871] = 12, - ACTIONS(2145), 1, + [35557] = 12, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2579), 1, anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, + ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2395), 1, + ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2397), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2429), 1, + ACTIONS(2603), 1, anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 3, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35916] = 5, - ACTIONS(2145), 1, + [35602] = 6, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2455), 1, anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 3, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2315), 13, + ACTIONS(2457), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -68017,14 +67757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35947] = 3, - ACTIONS(2145), 1, + [35635] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2369), 1, + ACTIONS(2529), 1, anon_sym_LF, - ACTIONS(2371), 18, + ACTIONS(2531), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -68043,143 +67781,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35974] = 3, - ACTIONS(1560), 1, - anon_sym_LF, - ACTIONS(2145), 1, + [35662] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + anon_sym_SLASH, + ACTIONS(2373), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2375), 1, + anon_sym_AMP_AMP, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2379), 1, + anon_sym_CARET, + ACTIONS(2381), 1, + anon_sym_AMP, + ACTIONS(2605), 1, + anon_sym_RPAREN, + ACTIONS(2367), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2387), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35711] = 12, + ACTIONS(2318), 1, sym_comment, - ACTIONS(1562), 18, + ACTIONS(2579), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2581), 1, + anon_sym_AMP_AMP, + ACTIONS(2583), 1, + anon_sym_PIPE, + ACTIONS(2585), 1, + anon_sym_CARET, + ACTIONS(2587), 1, + anon_sym_AMP, + ACTIONS(2607), 1, + anon_sym_LF, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2589), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2591), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [35756] = 12, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(2455), 1, + anon_sym_LF, + ACTIONS(2457), 1, anon_sym_PIPE_PIPE, + ACTIONS(2581), 1, anon_sym_AMP_AMP, + ACTIONS(2583), 1, anon_sym_PIPE, + ACTIONS(2585), 1, anon_sym_CARET, + ACTIONS(2587), 1, anon_sym_AMP, + ACTIONS(2575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [35801] = 7, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(2455), 1, + anon_sym_LF, + ACTIONS(2575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2593), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36001] = 12, - ACTIONS(2145), 1, + ACTIONS(2577), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2591), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(2457), 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, + [35836] = 12, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2579), 1, anon_sym_PIPE_PIPE, - ACTIONS(2393), 1, + ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2395), 1, + ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2397), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2431), 1, + ACTIONS(2609), 1, anon_sym_LF, - ACTIONS(2383), 2, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 2, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 3, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 4, + ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [36046] = 14, - ACTIONS(3), 1, + [35881] = 12, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_SLASH, - ACTIONS(2180), 1, + ACTIONS(2579), 1, anon_sym_PIPE_PIPE, - ACTIONS(2182), 1, + ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2184), 1, + ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2186), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2188), 1, + ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2433), 1, - anon_sym_RPAREN, - ACTIONS(2174), 2, + ACTIONS(2611), 1, + anon_sym_LF, + ACTIONS(2575), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2176), 2, + ACTIONS(2589), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2190), 2, + ACTIONS(2591), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [35926] = 9, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(2455), 1, + anon_sym_LF, + ACTIONS(2587), 1, + anon_sym_AMP, + ACTIONS(2575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2192), 2, + ACTIONS(2593), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2577), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2457), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2591), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(2194), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2196), 2, + anon_sym_LT, + [35965] = 12, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(2579), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2581), 1, + anon_sym_AMP_AMP, + ACTIONS(2583), 1, + anon_sym_PIPE, + ACTIONS(2585), 1, + anon_sym_CARET, + ACTIONS(2587), 1, + anon_sym_AMP, + ACTIONS(2613), 1, + anon_sym_LF, + ACTIONS(2575), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2589), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2593), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36095] = 10, + ACTIONS(2577), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2591), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [36010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, - anon_sym___based, - ACTIONS(1740), 1, - sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2618), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2622), 1, + anon_sym_LBRACK, + ACTIONS(1453), 2, + anon_sym_COMMA, anon_sym_STAR, - STATE(1026), 1, - sym__declarator, - STATE(1403), 1, - sym_ms_based_modifier, - STATE(886), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(2615), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1437), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1080), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [36134] = 10, + sym_identifier, + [36043] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1035), 1, - sym__declarator, - STATE(1403), 1, + STATE(1054), 1, + sym__type_declarator, + STATE(1380), 1, sym_ms_based_modifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68187,28 +68089,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1080), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [36173] = 10, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [36082] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1053), 1, + STATE(1046), 1, sym__field_declarator, - STATE(1331), 1, + STATE(1326), 1, sym_ms_based_modifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68216,28 +68118,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1096), 5, + STATE(1087), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36212] = 10, + [36121] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1049), 1, - sym__field_declarator, - STATE(1331), 1, + STATE(1058), 1, + sym__type_declarator, + STATE(1380), 1, sym_ms_based_modifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68245,28 +68147,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1096), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [36251] = 10, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [36160] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1037), 1, + STATE(1017), 1, sym__declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68274,28 +68176,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [36290] = 10, + [36199] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1066), 1, - sym__type_declarator, - STATE(1385), 1, + STATE(1042), 1, + sym__field_declarator, + STATE(1326), 1, sym_ms_based_modifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68303,28 +68205,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1109), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [36329] = 10, + STATE(1087), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [36238] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1052), 1, - sym__field_declarator, - STATE(1331), 1, + STATE(1069), 1, + sym__type_declarator, + STATE(1380), 1, sym_ms_based_modifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68332,28 +68234,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1096), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [36368] = 10, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [36277] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1073), 1, - sym__type_declarator, - STATE(1385), 1, + STATE(1038), 1, + sym__declarator, + STATE(1398), 1, sym_ms_based_modifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68361,28 +68263,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1109), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [36407] = 10, + STATE(1073), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36316] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1062), 1, - sym__type_declarator, - STATE(1385), 1, + STATE(1051), 1, + sym__field_declarator, + STATE(1326), 1, sym_ms_based_modifier, - STATE(886), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68390,317 +68292,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1109), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [36446] = 10, + STATE(1087), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [36355] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 1, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(1930), 1, + sym_identifier, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(1387), 1, + ACTIONS(2263), 1, anon_sym_STAR, - ACTIONS(1748), 1, - anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_RPAREN, - STATE(1111), 1, - sym__abstract_declarator, - STATE(1143), 1, - sym_parameter_list, - STATE(886), 2, + STATE(1027), 1, + sym__declarator, + STATE(1398), 1, + sym_ms_based_modifier, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1141), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [36484] = 10, + STATE(1073), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36394] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1387), 1, + ACTIONS(1592), 1, anon_sym_STAR, - ACTIONS(1748), 1, + ACTIONS(1938), 1, anon_sym_LBRACK, - ACTIONS(2437), 1, + ACTIONS(2625), 1, anon_sym_RPAREN, - STATE(1128), 1, - sym__abstract_declarator, - STATE(1143), 1, + STATE(1142), 1, sym_parameter_list, - STATE(886), 2, + STATE(1144), 1, + sym__abstract_declarator, + STATE(991), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2627), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1141), 4, + STATE(1143), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36522] = 10, + [36432] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1387), 1, + ACTIONS(1592), 1, anon_sym_STAR, - ACTIONS(1748), 1, + ACTIONS(1938), 1, anon_sym_LBRACK, - ACTIONS(2439), 1, + ACTIONS(2253), 1, anon_sym_RPAREN, - STATE(1133), 1, + STATE(1114), 1, sym__abstract_declarator, - STATE(1143), 1, + STATE(1142), 1, sym_parameter_list, - STATE(993), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2627), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1141), 4, + STATE(1143), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36560] = 10, + [36470] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1387), 1, + ACTIONS(1592), 1, anon_sym_STAR, - ACTIONS(1742), 1, - anon_sym_RPAREN, - ACTIONS(1748), 1, + ACTIONS(1938), 1, anon_sym_LBRACK, - STATE(1115), 1, + ACTIONS(2629), 1, + anon_sym_RPAREN, + STATE(1123), 1, sym__abstract_declarator, - STATE(1143), 1, + STATE(1142), 1, sym_parameter_list, - STATE(992), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2627), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1141), 4, + STATE(1143), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36598] = 7, + [36508] = 7, ACTIONS(3), 1, sym_comment, - STATE(1003), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(2443), 2, + ACTIONS(2633), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2448), 2, + ACTIONS(2638), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(996), 2, + STATE(990), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2445), 3, + ACTIONS(2635), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2441), 6, + ACTIONS(2631), 6, anon_sym___based, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36630] = 10, + [36540] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1387), 1, + ACTIONS(1592), 1, anon_sym_STAR, - ACTIONS(1748), 1, + ACTIONS(1938), 1, anon_sym_LBRACK, - ACTIONS(2451), 1, + ACTIONS(2641), 1, anon_sym_RPAREN, - STATE(1136), 1, + STATE(1128), 1, sym__abstract_declarator, - STATE(1143), 1, + STATE(1142), 1, sym_parameter_list, - STATE(998), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2627), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1141), 4, + STATE(1143), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36668] = 10, + [36578] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1387), 1, + ACTIONS(1592), 1, anon_sym_STAR, - ACTIONS(1748), 1, + ACTIONS(1938), 1, anon_sym_LBRACK, - ACTIONS(2453), 1, + ACTIONS(2643), 1, anon_sym_RPAREN, - STATE(1134), 1, + STATE(1127), 1, + sym__abstract_declarator, + STATE(1142), 1, + sym_parameter_list, + STATE(989), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2627), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(1143), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [36616] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1592), 1, + anon_sym_STAR, + ACTIONS(1932), 1, + anon_sym_RPAREN, + ACTIONS(1938), 1, + anon_sym_LBRACK, + STATE(1108), 1, sym__abstract_declarator, - STATE(1143), 1, + STATE(1142), 1, sym_parameter_list, - STATE(886), 2, + STATE(988), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2435), 4, + ACTIONS(2627), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1141), 4, + STATE(1143), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36706] = 7, + [36654] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2216), 1, sym_primitive_type, - ACTIONS(2455), 1, + ACTIONS(2645), 1, sym_identifier, - STATE(774), 1, + STATE(830), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2027), 4, + ACTIONS(2210), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2029), 4, + ACTIONS(2212), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(2031), 4, + ACTIONS(2214), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [36737] = 11, + [36685] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2269), 1, anon_sym_STAR, - ACTIONS(2457), 1, + ACTIONS(2647), 1, anon_sym_SEMI, - ACTIONS(2459), 1, + ACTIONS(2649), 1, anon_sym_COLON, - STATE(1021), 1, + STATE(1015), 1, sym__field_declarator, - STATE(1331), 1, + STATE(1326), 1, sym_ms_based_modifier, - STATE(1342), 1, + STATE(1374), 1, sym_bitfield_clause, - STATE(1096), 5, + STATE(1087), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36775] = 11, + [36723] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2269), 1, anon_sym_STAR, - ACTIONS(2459), 1, + ACTIONS(2649), 1, anon_sym_COLON, - ACTIONS(2461), 1, + ACTIONS(2651), 1, anon_sym_SEMI, - STATE(1018), 1, + STATE(1030), 1, sym__field_declarator, - STATE(1331), 1, - sym_ms_based_modifier, - STATE(1446), 1, + STATE(1324), 1, sym_bitfield_clause, - STATE(1096), 5, + STATE(1326), 1, + sym_ms_based_modifier, + STATE(1087), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36813] = 11, + [36761] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2269), 1, anon_sym_STAR, - ACTIONS(2459), 1, + ACTIONS(2649), 1, anon_sym_COLON, - ACTIONS(2463), 1, + ACTIONS(2653), 1, anon_sym_SEMI, - STATE(1031), 1, + STATE(1014), 1, sym__field_declarator, - STATE(1329), 1, - sym_bitfield_clause, - STATE(1331), 1, + STATE(1326), 1, sym_ms_based_modifier, - STATE(1096), 5, + STATE(1386), 1, + sym_bitfield_clause, + STATE(1087), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36851] = 3, + [36799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2657), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2465), 11, + ACTIONS(2655), 11, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -68712,13 +68643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36872] = 3, + [36820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 2, + ACTIONS(2661), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2469), 11, + ACTIONS(2659), 11, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -68730,522 +68661,581 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36893] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym___based, - ACTIONS(1740), 1, - sym_identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN2, - ACTIONS(2067), 1, - anon_sym_STAR, - STATE(1071), 1, - sym__declarator, - STATE(1232), 1, - sym_init_declarator, - STATE(1403), 1, - sym_ms_based_modifier, - STATE(1080), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [36925] = 12, + [36841] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(115), 1, anon_sym_LBRACE, - ACTIONS(2473), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2477), 1, + ACTIONS(2667), 1, anon_sym_SEMI, - ACTIONS(2479), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2481), 1, + ACTIONS(2671), 1, anon_sym_EQ, - STATE(261), 1, + STATE(125), 1, sym_compound_statement, - STATE(1044), 1, + STATE(1033), 1, sym_parameter_list, - STATE(1201), 1, + STATE(1183), 1, aux_sym_declaration_repeat1, - STATE(1048), 2, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [36963] = 12, + [36879] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(319), 1, - anon_sym_LBRACE, - ACTIONS(2473), 1, - anon_sym_COMMA, - ACTIONS(2475), 1, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(1930), 1, + sym_identifier, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, - anon_sym_LBRACK, - ACTIONS(2481), 1, - anon_sym_EQ, - ACTIONS(2483), 1, - anon_sym_SEMI, - STATE(290), 1, - sym_compound_statement, - STATE(1044), 1, - sym_parameter_list, - STATE(1167), 1, - aux_sym_declaration_repeat1, - STATE(1048), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [37001] = 9, + ACTIONS(2263), 1, + anon_sym_STAR, + STATE(1009), 1, + sym__declarator, + STATE(1156), 1, + sym_init_declarator, + STATE(1398), 1, + sym_ms_based_modifier, + STATE(1073), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36911] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1014), 1, + STATE(1043), 1, sym__declarator, - STATE(1156), 1, + STATE(1177), 1, sym_init_declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37033] = 9, + [36943] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1047), 1, sym__declarator, - STATE(1199), 1, + STATE(1156), 1, sym_init_declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37065] = 9, + [36975] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1007), 1, + STATE(1011), 1, sym__declarator, - STATE(1199), 1, + STATE(1168), 1, sym_init_declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37097] = 9, + [37007] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1050), 1, + STATE(1057), 1, sym__declarator, - STATE(1197), 1, + STATE(1230), 1, sym_init_declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37129] = 9, + [37039] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_COMMA, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, + anon_sym_EQ, + ACTIONS(2673), 1, + anon_sym_SEMI, + STATE(356), 1, + sym_compound_statement, + STATE(1033), 1, + sym_parameter_list, + STATE(1192), 1, + aux_sym_declaration_repeat1, + STATE(1044), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [37077] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1046), 1, + STATE(1049), 1, sym__declarator, - STATE(1168), 1, + STATE(1174), 1, sym_init_declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37161] = 9, + [37109] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1016), 1, + STATE(1006), 1, sym__declarator, - STATE(1168), 1, + STATE(1177), 1, sym_init_declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37193] = 12, + [37141] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(373), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - ACTIONS(2473), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2481), 1, + ACTIONS(2671), 1, anon_sym_EQ, - ACTIONS(2485), 1, + ACTIONS(2675), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(318), 1, sym_compound_statement, - STATE(1044), 1, + STATE(1033), 1, sym_parameter_list, - STATE(1177), 1, + STATE(1150), 1, aux_sym_declaration_repeat1, - STATE(1048), 2, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37231] = 9, + [37179] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1006), 1, + STATE(1000), 1, sym__declarator, - STATE(1197), 1, + STATE(1174), 1, sym_init_declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37263] = 12, + [37211] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(115), 1, + ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(2473), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2481), 1, + ACTIONS(2671), 1, anon_sym_EQ, - ACTIONS(2487), 1, + ACTIONS(2677), 1, anon_sym_SEMI, - STATE(113), 1, + STATE(360), 1, sym_compound_statement, - STATE(1044), 1, + STATE(1033), 1, sym_parameter_list, - STATE(1180), 1, + STATE(1164), 1, aux_sym_declaration_repeat1, - STATE(1048), 2, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37301] = 9, + [37249] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1054), 1, + STATE(1048), 1, sym__declarator, - STATE(1156), 1, + STATE(1168), 1, sym_init_declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37333] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2459), 1, - anon_sym_COLON, - ACTIONS(2475), 1, - anon_sym_LPAREN2, - ACTIONS(2489), 1, - anon_sym_COMMA, - ACTIONS(2491), 1, - anon_sym_SEMI, - ACTIONS(2493), 1, - anon_sym_LBRACK, - STATE(1093), 1, - sym_parameter_list, - STATE(1112), 1, - aux_sym_field_declaration_repeat1, - STATE(1448), 1, - sym_bitfield_clause, - STATE(1072), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [37368] = 8, + [37281] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1061), 1, + STATE(1066), 1, sym__type_declarator, - STATE(1385), 1, + STATE(1380), 1, sym_ms_based_modifier, - STATE(1109), 5, + STATE(1098), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37397] = 8, + [37310] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, - anon_sym___based, - ACTIONS(1740), 1, - sym_identifier, - ACTIONS(2065), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2649), 1, + anon_sym_COLON, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, - anon_sym_STAR, - STATE(1084), 1, - sym__declarator, - STATE(1403), 1, - sym_ms_based_modifier, - STATE(1080), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [37426] = 11, + ACTIONS(2679), 1, + anon_sym_COMMA, + ACTIONS(2681), 1, + anon_sym_SEMI, + ACTIONS(2683), 1, + anon_sym_LBRACK, + STATE(1091), 1, + sym_parameter_list, + STATE(1106), 1, + aux_sym_field_declaration_repeat1, + STATE(1400), 1, + sym_bitfield_clause, + STATE(1061), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [37345] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2459), 1, + ACTIONS(2649), 1, anon_sym_COLON, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2493), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - ACTIONS(2495), 1, + ACTIONS(2685), 1, anon_sym_SEMI, - STATE(1093), 1, + STATE(1091), 1, sym_parameter_list, - STATE(1113), 1, + STATE(1107), 1, aux_sym_field_declaration_repeat1, - STATE(1334), 1, + STATE(1357), 1, sym_bitfield_clause, - STATE(1072), 2, + STATE(1061), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [37380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2689), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2692), 1, + anon_sym_LBRACK, + STATE(1016), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2687), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [37403] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, + anon_sym_LBRACK, + STATE(1033), 1, + sym_parameter_list, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37461] = 8, + ACTIONS(2694), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [37430] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2069), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1074), 1, - sym__field_declarator, - STATE(1331), 1, + STATE(1063), 1, + sym__type_declarator, + STATE(1380), 1, sym_ms_based_modifier, - STATE(1096), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [37490] = 8, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [37459] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1063), 1, + STATE(1088), 1, sym__type_declarator, - STATE(1385), 1, + STATE(1380), 1, sym_ms_based_modifier, - STATE(1109), 5, + STATE(1098), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37519] = 8, + [37488] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1065), 1, + STATE(1059), 1, sym__type_declarator, - STATE(1385), 1, + STATE(1380), 1, + sym_ms_based_modifier, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [37517] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, + anon_sym_LPAREN2, + ACTIONS(2259), 1, + anon_sym_STAR, + STATE(1074), 1, + sym__type_declarator, + STATE(1380), 1, sym_ms_based_modifier, - STATE(1109), 5, + STATE(1098), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37548] = 8, + [37546] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(2265), 1, + sym_identifier, + ACTIONS(2267), 1, + anon_sym_LPAREN2, + ACTIONS(2269), 1, + anon_sym_STAR, + STATE(1065), 1, + sym__field_declarator, + STATE(1326), 1, + sym_ms_based_modifier, + STATE(1087), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [37575] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1076), 1, + STATE(1060), 1, sym__type_declarator, - STATE(1385), 1, + STATE(1380), 1, sym_ms_based_modifier, - STATE(1109), 5, + STATE(1098), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37577] = 7, + [37604] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(1044), 1, + STATE(1033), 1, sym_parameter_list, - STATE(1048), 2, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2497), 5, + ACTIONS(2696), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [37604] = 5, + [37631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2700), 1, anon_sym___attribute__, - ACTIONS(2504), 1, + ACTIONS(2702), 1, anon_sym_LBRACK, - STATE(1027), 2, + STATE(1036), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2499), 7, + ACTIONS(2698), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69253,227 +69243,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37627] = 8, + [37654] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1098), 1, - sym__type_declarator, - STATE(1385), 1, + STATE(1083), 1, + sym__declarator, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1109), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37656] = 8, + STATE(1073), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37683] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, + anon_sym_LBRACK, + STATE(1033), 1, + sym_parameter_list, + STATE(1044), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2704), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [37710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2265), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1058), 1, - sym__type_declarator, - STATE(1385), 1, + STATE(1089), 1, + sym__field_declarator, + STATE(1326), 1, sym_ms_based_modifier, - STATE(1109), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37685] = 8, + STATE(1087), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [37739] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1088), 1, + STATE(1078), 1, sym__declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37714] = 11, + [37768] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2459), 1, + ACTIONS(2649), 1, anon_sym_COLON, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2489), 1, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2493), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(2706), 1, anon_sym_SEMI, - STATE(1093), 1, + STATE(1091), 1, sym_parameter_list, - STATE(1118), 1, + STATE(1109), 1, aux_sym_field_declaration_repeat1, - STATE(1280), 1, + STATE(1307), 1, sym_bitfield_clause, - STATE(1072), 2, + STATE(1061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37749] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym___based, - ACTIONS(1740), 1, - sym_identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN2, - ACTIONS(2067), 1, - anon_sym_STAR, - STATE(1085), 1, - sym__declarator, - STATE(1403), 1, - sym_ms_based_modifier, - STATE(1080), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [37778] = 8, + [37803] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1086), 1, + STATE(1068), 1, sym__type_declarator, - STATE(1385), 1, + STATE(1380), 1, sym_ms_based_modifier, - STATE(1109), 5, + STATE(1098), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37807] = 7, + [37832] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(1930), 1, + sym_identifier, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, - anon_sym_LBRACK, - STATE(1044), 1, - sym_parameter_list, - STATE(1048), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2508), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [37834] = 7, + ACTIONS(2263), 1, + anon_sym_STAR, + STATE(1092), 1, + sym__declarator, + STATE(1398), 1, + sym_ms_based_modifier, + STATE(1073), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2700), 1, + anon_sym___attribute__, + ACTIONS(2710), 1, anon_sym_LBRACK, - STATE(1044), 1, - sym_parameter_list, - STATE(1048), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2510), 5, + STATE(1025), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2708), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37861] = 8, + [37884] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1059), 1, + STATE(1071), 1, sym__type_declarator, - STATE(1385), 1, + STATE(1380), 1, sym_ms_based_modifier, - STATE(1109), 5, + STATE(1098), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37890] = 7, + [37913] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(1930), 1, + sym_identifier, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, - anon_sym_LBRACK, - STATE(1044), 1, - sym_parameter_list, - STATE(1048), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2512), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [37917] = 5, + ACTIONS(2263), 1, + anon_sym_STAR, + STATE(1081), 1, + sym__declarator, + STATE(1398), 1, + sym_ms_based_modifier, + STATE(1073), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, + ACTIONS(2714), 1, anon_sym___attribute__, - ACTIONS(2518), 1, + ACTIONS(2717), 1, anon_sym_LBRACK, - STATE(1027), 2, + STATE(1036), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2514), 7, + ACTIONS(2712), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69481,728 +69470,688 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37940] = 8, + [37965] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1070), 1, + STATE(1056), 1, sym__type_declarator, - STATE(1385), 1, + STATE(1380), 1, sym_ms_based_modifier, - STATE(1109), 5, + STATE(1098), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37969] = 8, + [37994] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, - anon_sym___based, - ACTIONS(2069), 1, - sym_identifier, - ACTIONS(2071), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2073), 1, - anon_sym_STAR, - STATE(1092), 1, - sym__field_declarator, - STATE(1331), 1, - sym_ms_based_modifier, - STATE(1096), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [37998] = 8, + ACTIONS(2669), 1, + anon_sym_LBRACK, + STATE(1033), 1, + sym_parameter_list, + STATE(1044), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2719), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [38021] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2075), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1067), 1, + STATE(1055), 1, sym__type_declarator, - STATE(1385), 1, + STATE(1380), 1, sym_ms_based_modifier, - STATE(1109), 5, + STATE(1098), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [38027] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1684), 1, - anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_LBRACK_LBRACK, - STATE(1042), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(1686), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, [38050] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1740), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2261), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(2263), 1, anon_sym_STAR, - STATE(1091), 1, + STATE(1072), 1, sym__declarator, - STATE(1403), 1, + STATE(1398), 1, sym_ms_based_modifier, - STATE(1080), 5, + STATE(1073), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [38079] = 5, + [38079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, - anon_sym___attribute__, - ACTIONS(2525), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1038), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2523), 7, + ACTIONS(2721), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [38102] = 8, + anon_sym_COLON, + [38097] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 1, - anon_sym___based, - ACTIONS(1740), 1, - sym_identifier, - ACTIONS(2065), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2067), 1, - anon_sym_STAR, - STATE(1082), 1, - sym__declarator, - STATE(1403), 1, - sym_ms_based_modifier, - STATE(1080), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [38131] = 10, + ACTIONS(2683), 1, + anon_sym_LBRACK, + STATE(1091), 1, + sym_parameter_list, + STATE(1061), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2725), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [38123] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2481), 1, + ACTIONS(2671), 1, anon_sym_EQ, - ACTIONS(2487), 1, + ACTIONS(2673), 1, anon_sym_SEMI, - STATE(1044), 1, + STATE(1033), 1, sym_parameter_list, - STATE(1180), 1, + STATE(1192), 1, aux_sym_declaration_repeat1, - STATE(1048), 2, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38163] = 3, + [38155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2729), 1, anon_sym_LBRACK, - ACTIONS(2527), 9, + STATE(1016), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2727), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [38181] = 5, + [38177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2533), 1, + ACTIONS(2733), 1, anon_sym_LBRACK, - STATE(1042), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2531), 6, + ACTIONS(2731), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [38203] = 7, + anon_sym_COLON, + [38195] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2493), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - STATE(1093), 1, + STATE(1091), 1, sym_parameter_list, - STATE(1072), 2, + STATE(1061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2535), 4, + ACTIONS(2735), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38229] = 10, + [38221] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2477), 1, - anon_sym_SEMI, - ACTIONS(2479), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2481), 1, + ACTIONS(2671), 1, anon_sym_EQ, - STATE(1044), 1, + ACTIONS(2675), 1, + anon_sym_SEMI, + STATE(1033), 1, sym_parameter_list, - STATE(1201), 1, + STATE(1150), 1, aux_sym_declaration_repeat1, - STATE(1048), 2, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38261] = 7, + [38253] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2663), 1, + anon_sym_COMMA, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2493), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(1093), 1, + ACTIONS(2671), 1, + anon_sym_EQ, + ACTIONS(2677), 1, + anon_sym_SEMI, + STATE(1033), 1, sym_parameter_list, - STATE(1072), 2, + STATE(1164), 1, + aux_sym_declaration_repeat1, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2537), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [38287] = 7, + [38285] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2663), 1, + anon_sym_COMMA, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2493), 1, + ACTIONS(2667), 1, + anon_sym_SEMI, + ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(1093), 1, + ACTIONS(2671), 1, + anon_sym_EQ, + STATE(1033), 1, sym_parameter_list, - STATE(1072), 2, + STATE(1183), 1, + aux_sym_declaration_repeat1, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2539), 4, + [38317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2739), 1, + anon_sym_LBRACK, + ACTIONS(2737), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - [38313] = 7, + [38335] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2493), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - STATE(1093), 1, + STATE(1091), 1, sym_parameter_list, - STATE(1072), 2, + STATE(1061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2541), 4, + ACTIONS(2741), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38339] = 10, + [38361] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_COMMA, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - ACTIONS(2481), 1, - anon_sym_EQ, - ACTIONS(2485), 1, - anon_sym_SEMI, - STATE(1044), 1, + STATE(1091), 1, sym_parameter_list, - STATE(1177), 1, - aux_sym_declaration_repeat1, - STATE(1048), 2, + STATE(1061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_LBRACK, - ACTIONS(2543), 9, + ACTIONS(2743), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - [38389] = 3, + [38387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, - anon_sym_LBRACK, - ACTIONS(2547), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [38407] = 10, + ACTIONS(2745), 1, + sym_identifier, + ACTIONS(2749), 1, + sym_system_lib_string, + STATE(1319), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2747), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [38408] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2473), 1, - anon_sym_COMMA, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(2481), 1, - anon_sym_EQ, - ACTIONS(2483), 1, - anon_sym_SEMI, - STATE(1044), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1167), 1, - aux_sym_declaration_repeat1, - STATE(1048), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38439] = 9, + ACTIONS(2751), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [38433] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2551), 1, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, anon_sym_COMMA, - ACTIONS(2553), 1, + ACTIONS(2757), 1, anon_sym_SEMI, - ACTIONS(2555), 1, - anon_sym_LBRACK, - STATE(1101), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1211), 1, + STATE(1153), 1, aux_sym_type_definition_repeat2, - STATE(1078), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38468] = 9, + [38462] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2555), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(2557), 1, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2759), 1, anon_sym_SEMI, - STATE(1101), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1179), 1, + STATE(1190), 1, aux_sym_type_definition_repeat2, - STATE(1078), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38497] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2559), 1, - sym_identifier, - ACTIONS(2563), 1, - sym_system_lib_string, - STATE(1391), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2561), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [38518] = 9, + [38491] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2555), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2565), 1, - anon_sym_SEMI, - STATE(1101), 1, + ACTIONS(2671), 1, + anon_sym_EQ, + STATE(1033), 1, sym_parameter_list, - STATE(1195), 1, - aux_sym_type_definition_repeat2, - STATE(1078), 2, + ACTIONS(2761), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38547] = 7, + [38518] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2555), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - STATE(1101), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1078), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2567), 3, + ACTIONS(2763), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [38572] = 9, + [38543] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2555), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(2569), 1, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2765), 1, anon_sym_SEMI, - STATE(1101), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1193), 1, + STATE(1203), 1, aux_sym_type_definition_repeat2, - STATE(1078), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2571), 1, - sym_identifier, - ACTIONS(2573), 1, - sym_system_lib_string, - STATE(1379), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2561), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [38622] = 9, + [38572] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2555), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(2575), 1, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2767), 1, anon_sym_SEMI, - STATE(1101), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1188), 1, + STATE(1186), 1, aux_sym_type_definition_repeat2, - STATE(1078), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38651] = 7, + [38601] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN2, - ACTIONS(2555), 1, + ACTIONS(2771), 1, anon_sym_LBRACK, - STATE(1101), 1, - sym_parameter_list, - STATE(1078), 2, + STATE(1016), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2577), 3, + ACTIONS(2769), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [38676] = 9, + anon_sym_COLON, + [38622] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2773), 1, + sym_identifier, + ACTIONS(2775), 1, + sym_system_lib_string, + STATE(1318), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2747), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [38643] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2555), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(2579), 1, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2777), 1, anon_sym_SEMI, - STATE(1101), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1189), 1, + STATE(1149), 1, aux_sym_type_definition_repeat2, - STATE(1078), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38705] = 5, + [38672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(2779), 1, sym_identifier, - ACTIONS(2583), 1, + ACTIONS(2781), 1, sym_system_lib_string, - STATE(1287), 2, + STATE(1425), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2561), 5, + ACTIONS(2747), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [38726] = 7, + [38693] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2555), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - STATE(1101), 1, + STATE(1091), 1, sym_parameter_list, - STATE(1078), 2, + STATE(1061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2585), 3, + ACTIONS(2783), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - [38751] = 9, + anon_sym_COLON, + [38718] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2555), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2785), 1, anon_sym_SEMI, - STATE(1101), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1202), 1, + STATE(1199), 1, aux_sym_type_definition_repeat2, - STATE(1078), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38780] = 8, + [38747] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(2481), 1, - anon_sym_EQ, - STATE(1044), 1, + STATE(1103), 1, sym_parameter_list, - ACTIONS(2589), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1048), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [38807] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2593), 1, - anon_sym_LBRACK, - STATE(1042), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2591), 5, + ACTIONS(2787), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - [38828] = 7, + [38772] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2555), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - STATE(1101), 1, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2789), 1, + anon_sym_SEMI, + STATE(1103), 1, sym_parameter_list, - STATE(1078), 2, + STATE(1157), 1, + aux_sym_type_definition_repeat2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2595), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [38853] = 7, + [38801] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2493), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - STATE(1093), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1072), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2597), 3, + ACTIONS(2791), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON, - [38878] = 5, + [38826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, + ACTIONS(2793), 1, sym_identifier, - ACTIONS(2601), 1, + ACTIONS(2795), 1, sym_system_lib_string, - STATE(1430), 2, + STATE(1439), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2561), 5, + ACTIONS(2747), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [38899] = 9, + [38847] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2555), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2797), 1, anon_sym_SEMI, - STATE(1101), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1186), 1, + STATE(1162), 1, aux_sym_type_definition_repeat2, - STATE(1078), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38928] = 3, + [38876] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(115), 1, + anon_sym_LBRACE, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, + anon_sym_LBRACK, + STATE(104), 1, + sym_compound_statement, + STATE(1033), 1, + sym_parameter_list, + STATE(1044), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2801), 1, anon_sym_LBRACK, - ACTIONS(2605), 7, + ACTIONS(2799), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70210,27 +70159,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [38944] = 5, + [38918] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2611), 1, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2753), 1, anon_sym_LBRACK, - STATE(1042), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2609), 4, + STATE(1103), 1, + sym_parameter_list, + ACTIONS(2803), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - [38964] = 3, + STATE(1084), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(2807), 1, anon_sym_LBRACK, - ACTIONS(2613), 7, + ACTIONS(2805), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70238,12 +70189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [38980] = 3, + [38958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(2617), 7, + ACTIONS(2809), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70251,12 +70202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [38996] = 3, + [38974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(2815), 1, anon_sym_LBRACK, - ACTIONS(2621), 7, + ACTIONS(2813), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70264,30 +70215,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39012] = 8, + [38990] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(373), 1, + ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(289), 1, + STATE(342), 1, sym_compound_statement, - STATE(1044), 1, + STATE(1033), 1, + sym_parameter_list, + STATE(1044), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [39016] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, + anon_sym_LBRACK, + STATE(1033), 1, sym_parameter_list, - STATE(1048), 2, + ACTIONS(2817), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39038] = 3, + [39040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2627), 1, + ACTIONS(2821), 1, anon_sym_LBRACK, - ACTIONS(2625), 7, + ACTIONS(2819), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70295,3552 +70263,3519 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39054] = 8, + [39056] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(115), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(106), 1, + STATE(345), 1, sym_compound_statement, - STATE(1044), 1, + STATE(1033), 1, sym_parameter_list, - STATE(1048), 2, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39080] = 8, + [39082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 1, + anon_sym_LBRACK, + ACTIONS(2823), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [39098] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(247), 1, + STATE(350), 1, sym_compound_statement, - STATE(1044), 1, + STATE(1033), 1, sym_parameter_list, - STATE(1048), 2, + STATE(1044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39106] = 7, + [39124] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN2, - ACTIONS(2555), 1, + ACTIONS(2829), 1, anon_sym_LBRACK, - STATE(1101), 1, - sym_parameter_list, - ACTIONS(2629), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1078), 2, + STATE(1016), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39130] = 7, + ACTIONS(2827), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + [39144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2833), 1, anon_sym_LBRACK, - STATE(1044), 1, - sym_parameter_list, - ACTIONS(2631), 2, + ACTIONS(2831), 6, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1048), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39154] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(319), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, - anon_sym_LBRACK, - STATE(299), 1, - sym_compound_statement, - STATE(1044), 1, - sym_parameter_list, - STATE(1048), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39180] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [39159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 1, + ACTIONS(2837), 1, anon_sym_LBRACK, - ACTIONS(2633), 7, + ACTIONS(2835), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [39196] = 3, + anon_sym_COLON, + [39174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2639), 1, + ACTIONS(2841), 1, anon_sym_LBRACK, - ACTIONS(2637), 6, + ACTIONS(2839), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39211] = 7, + [39189] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2479), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(2641), 1, + ACTIONS(2843), 1, anon_sym_RPAREN, - STATE(1044), 1, + STATE(1103), 1, sym_parameter_list, - STATE(1048), 2, + STATE(1084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39234] = 7, + [39212] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2493), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(2845), 1, anon_sym_RPAREN, - STATE(1093), 1, + STATE(1091), 1, sym_parameter_list, - STATE(1072), 2, + STATE(1061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39257] = 3, + [39235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - ACTIONS(2645), 6, + ACTIONS(2847), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39272] = 3, + [39250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - ACTIONS(2649), 6, + ACTIONS(2851), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39287] = 3, + [39265] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2653), 6, - anon_sym_COMMA, + ACTIONS(2855), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [39302] = 3, + STATE(1033), 1, + sym_parameter_list, + STATE(1044), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [39288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2859), 1, anon_sym_LBRACK, - ACTIONS(2657), 6, + ACTIONS(2857), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39317] = 3, + [39303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(2863), 1, anon_sym_LBRACK, - ACTIONS(2661), 6, + ACTIONS(2861), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39332] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 1, - anon_sym_LPAREN2, - ACTIONS(2555), 1, - anon_sym_LBRACK, - ACTIONS(2665), 1, - anon_sym_RPAREN, - STATE(1101), 1, - sym_parameter_list, - STATE(1078), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39355] = 3, + [39318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2867), 1, anon_sym_LBRACK, - ACTIONS(2667), 6, + ACTIONS(2865), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39370] = 3, + [39333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2673), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - ACTIONS(2671), 6, + ACTIONS(2869), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [39385] = 3, + [39347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 1, + ACTIONS(2875), 1, anon_sym_LBRACK, - ACTIONS(2675), 5, + ACTIONS(2873), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39399] = 3, + [39361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2681), 1, + ACTIONS(2879), 1, anon_sym_LBRACK, - ACTIONS(2679), 5, + ACTIONS(2877), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39413] = 3, + [39375] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, + ACTIONS(1518), 1, + anon_sym_LBRACK, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2883), 1, + anon_sym_DOT, + STATE(1102), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [39393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2683), 5, + ACTIONS(2885), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39427] = 3, + [39407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(2891), 1, anon_sym_LBRACK, - ACTIONS(2687), 5, + ACTIONS(2889), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39441] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_EQ, - ACTIONS(2693), 1, - anon_sym_DOT, - STATE(1106), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [39459] = 5, + [39421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2695), 1, + ACTIONS(2893), 1, anon_sym_LBRACK, - ACTIONS(2698), 1, + ACTIONS(2896), 1, anon_sym_EQ, - ACTIONS(2700), 1, + ACTIONS(2898), 1, anon_sym_DOT, - STATE(1106), 3, + STATE(1102), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [39477] = 3, + [39439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(2903), 1, anon_sym_LBRACK, - ACTIONS(2703), 5, + ACTIONS(2901), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39491] = 3, + [39453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2709), 1, + ACTIONS(2907), 1, anon_sym_LBRACK, - ACTIONS(2707), 5, + ACTIONS(2905), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39505] = 3, + [39467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(2911), 1, anon_sym_LBRACK, - ACTIONS(2711), 5, + ACTIONS(2909), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39519] = 3, + [39481] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, - anon_sym_LBRACK, - ACTIONS(2715), 5, + ACTIONS(2649), 1, + anon_sym_COLON, + ACTIONS(2679), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2913), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [39533] = 5, + STATE(1135), 1, + aux_sym_field_declaration_repeat1, + STATE(1337), 1, + sym_bitfield_clause, + [39500] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_COLON, + ACTIONS(2679), 1, + anon_sym_COMMA, + ACTIONS(2915), 1, + anon_sym_SEMI, + STATE(1135), 1, + aux_sym_field_declaration_repeat1, + STATE(1341), 1, + sym_bitfield_clause, + [39519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2721), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - STATE(1137), 1, + STATE(1134), 1, sym_parameter_list, - ACTIONS(2719), 2, + ACTIONS(2917), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39550] = 6, + [39536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2649), 1, anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2723), 1, + ACTIONS(2921), 1, anon_sym_SEMI, - STATE(1129), 1, + STATE(1135), 1, aux_sym_field_declaration_repeat1, - STATE(1421), 1, + STATE(1272), 1, sym_bitfield_clause, - [39569] = 6, + [39555] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(2925), 1, + anon_sym_COLON_COLON, + STATE(1223), 1, + sym_argument_list, + ACTIONS(2923), 2, anon_sym_COMMA, - ACTIONS(2725), 1, - anon_sym_SEMI, - STATE(1129), 1, - aux_sym_field_declaration_repeat1, - STATE(1323), 1, - sym_bitfield_clause, - [39588] = 6, + anon_sym_RBRACK_RBRACK, + [39572] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2093), 1, + ACTIONS(2289), 1, anon_sym_LBRACE, - ACTIONS(2727), 1, + ACTIONS(2927), 1, sym_identifier, - STATE(879), 1, + STATE(877), 1, sym_field_declaration_list, - STATE(1204), 1, + STATE(1171), 1, sym_ms_declspec_modifier, - [39607] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2475), 1, - anon_sym_LPAREN2, - ACTIONS(2721), 1, - anon_sym_LBRACK, - STATE(1137), 1, - sym_parameter_list, - ACTIONS(2729), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39624] = 6, + [39591] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2093), 1, + ACTIONS(2289), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2929), 1, sym_identifier, - STATE(878), 1, + STATE(872), 1, sym_field_declaration_list, STATE(1170), 1, sym_ms_declspec_modifier, - [39643] = 5, + [39610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2735), 1, - anon_sym_COLON_COLON, - STATE(1245), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [39660] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2459), 1, - anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2919), 1, + anon_sym_LBRACK, + STATE(1134), 1, + sym_parameter_list, + ACTIONS(2817), 2, anon_sym_COMMA, - ACTIONS(2737), 1, - anon_sym_SEMI, - STATE(1129), 1, - aux_sym_field_declaration_repeat1, - STATE(1367), 1, - sym_bitfield_clause, - [39679] = 5, + anon_sym_RPAREN, + [39627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2721), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - STATE(1137), 1, + STATE(1134), 1, sym_parameter_list, - ACTIONS(2631), 2, + ACTIONS(2931), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39696] = 5, - ACTIONS(2145), 1, + [39644] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2739), 1, + ACTIONS(2933), 1, anon_sym_LF, - ACTIONS(2741), 1, + ACTIONS(2935), 1, anon_sym_LPAREN, - ACTIONS(2743), 1, + ACTIONS(2937), 1, sym_preproc_arg, - STATE(1228), 1, - sym_preproc_params, - [39712] = 5, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2741), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - anon_sym_LF, - ACTIONS(2747), 1, - sym_preproc_arg, - STATE(1240), 1, + STATE(1258), 1, sym_preproc_params, - [39728] = 2, + [39660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 4, + ACTIONS(2939), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39738] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2751), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [39748] = 5, - ACTIONS(2145), 1, + [39670] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2741), 1, + ACTIONS(2935), 1, anon_sym_LPAREN, - ACTIONS(2753), 1, + ACTIONS(2941), 1, anon_sym_LF, - ACTIONS(2755), 1, + ACTIONS(2943), 1, sym_preproc_arg, - STATE(1269), 1, + STATE(1261), 1, sym_preproc_params, - [39764] = 2, + [39686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 4, + ACTIONS(2945), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39774] = 5, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2741), 1, - anon_sym_LPAREN, - ACTIONS(2759), 1, - anon_sym_LF, - ACTIONS(2761), 1, - sym_preproc_arg, - STATE(1266), 1, - sym_preproc_params, - [39790] = 5, - ACTIONS(2145), 1, + [39696] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(2947), 1, anon_sym_DQUOTE, - ACTIONS(2765), 1, + ACTIONS(2949), 1, aux_sym_string_literal_token1, - ACTIONS(2767), 1, + ACTIONS(2951), 1, sym_escape_sequence, - STATE(1152), 1, + STATE(1139), 1, aux_sym_string_literal_repeat1, - [39806] = 5, + [39712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2953), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2721), 1, anon_sym_LBRACK, - ACTIONS(2769), 1, - anon_sym_RPAREN, - STATE(1137), 1, - sym_parameter_list, - [39822] = 4, + [39722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + ACTIONS(2955), 4, anon_sym_COMMA, - STATE(1129), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(2774), 2, - anon_sym_SEMI, - anon_sym_COLON, - [39836] = 5, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2765), 1, - aux_sym_string_literal_token1, - ACTIONS(2767), 1, - sym_escape_sequence, - ACTIONS(2776), 1, - anon_sym_DQUOTE, - STATE(1152), 1, - aux_sym_string_literal_repeat1, - [39852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1250), 1, - sym_argument_list, - ACTIONS(2778), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [39866] = 5, - ACTIONS(2145), 1, + anon_sym_LBRACK, + [39732] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2780), 1, + ACTIONS(2957), 1, anon_sym_DQUOTE, - ACTIONS(2782), 1, + ACTIONS(2959), 1, aux_sym_string_literal_token1, - ACTIONS(2784), 1, + ACTIONS(2961), 1, sym_escape_sequence, - STATE(1127), 1, + STATE(1145), 1, aux_sym_string_literal_repeat1, - [39882] = 5, + [39748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2721), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2963), 1, anon_sym_RPAREN, - STATE(1137), 1, + STATE(1134), 1, sym_parameter_list, - [39898] = 5, - ACTIONS(3), 1, + [39764] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2475), 1, - anon_sym_LPAREN2, - ACTIONS(2721), 1, - anon_sym_LBRACK, - ACTIONS(2788), 1, - anon_sym_RPAREN, - STATE(1137), 1, - sym_parameter_list, - [39914] = 2, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(2965), 1, + anon_sym_LF, + ACTIONS(2967), 1, + sym_preproc_arg, + STATE(1252), 1, + sym_preproc_params, + [39780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 4, + ACTIONS(2969), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39924] = 5, + [39790] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + STATE(1264), 1, + sym_argument_list, + ACTIONS(2971), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [39804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2721), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - ACTIONS(2792), 1, + ACTIONS(2973), 1, anon_sym_RPAREN, - STATE(1137), 1, + STATE(1134), 1, sym_parameter_list, - [39940] = 2, + [39820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2665), 1, anon_sym_LPAREN2, + ACTIONS(2919), 1, anon_sym_LBRACK, - [39950] = 5, - ACTIONS(2145), 1, + ACTIONS(2975), 1, + anon_sym_RPAREN, + STATE(1134), 1, + sym_parameter_list, + [39836] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2741), 1, + ACTIONS(2935), 1, anon_sym_LPAREN, - ACTIONS(2796), 1, + ACTIONS(2977), 1, anon_sym_LF, - ACTIONS(2798), 1, + ACTIONS(2979), 1, sym_preproc_arg, - STATE(1258), 1, + STATE(1247), 1, + sym_preproc_params, + [39852] = 5, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(2981), 1, + anon_sym_LF, + ACTIONS(2983), 1, + sym_preproc_arg, + STATE(1248), 1, sym_preproc_params, - [39966] = 2, + [39868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 4, + ACTIONS(2985), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39976] = 2, + [39878] = 5, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(2949), 1, + aux_sym_string_literal_token1, + ACTIONS(2951), 1, + sym_escape_sequence, + ACTIONS(2987), 1, + anon_sym_DQUOTE, + STATE(1139), 1, + aux_sym_string_literal_repeat1, + [39894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 4, + ACTIONS(2989), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39986] = 2, + [39904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 4, + ACTIONS(2991), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39996] = 5, - ACTIONS(2145), 1, + [39914] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 1, - anon_sym_LPAREN, - ACTIONS(2806), 1, - anon_sym_LF, - ACTIONS(2808), 1, - sym_preproc_arg, - STATE(1254), 1, - sym_preproc_params, - [40012] = 2, + ACTIONS(2993), 1, + anon_sym_COMMA, + STATE(1135), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(2996), 2, + anon_sym_SEMI, + anon_sym_COLON, + [39928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 4, + ACTIONS(2998), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40022] = 5, - ACTIONS(3), 1, + [39938] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2812), 1, - sym_identifier, - ACTIONS(2814), 1, - anon_sym_COMMA, - ACTIONS(2816), 1, - anon_sym_RBRACE, - STATE(1162), 1, - sym_enumerator, - [40038] = 5, - ACTIONS(2145), 1, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + aux_sym_string_literal_token1, + ACTIONS(3004), 1, + sym_escape_sequence, + STATE(1119), 1, + aux_sym_string_literal_repeat1, + [39954] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_LF, - ACTIONS(2820), 1, - sym_preproc_arg, - STATE(1263), 1, - sym_preproc_params, - [40054] = 5, - ACTIONS(2145), 1, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2919), 1, + anon_sym_LBRACK, + ACTIONS(3006), 1, + anon_sym_RPAREN, + STATE(1134), 1, + sym_parameter_list, + [39970] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(3008), 1, anon_sym_DQUOTE, - ACTIONS(2824), 1, + ACTIONS(3010), 1, aux_sym_string_literal_token1, - ACTIONS(2826), 1, + ACTIONS(3013), 1, sym_escape_sequence, - STATE(1153), 1, + STATE(1139), 1, aux_sym_string_literal_repeat1, - [40070] = 5, - ACTIONS(2145), 1, + [39986] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(3016), 1, anon_sym_DQUOTE, - ACTIONS(2830), 1, + ACTIONS(3018), 1, aux_sym_string_literal_token1, - ACTIONS(2832), 1, + ACTIONS(3020), 1, sym_escape_sequence, - STATE(1130), 1, + STATE(1132), 1, aux_sym_string_literal_repeat1, - [40086] = 2, + [40002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 4, + ACTIONS(3022), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40096] = 5, + [40012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(3024), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2721), 1, anon_sym_LBRACK, - ACTIONS(2836), 1, - anon_sym_RPAREN, - STATE(1137), 1, - sym_parameter_list, - [40112] = 2, + [40022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 4, + ACTIONS(3026), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40122] = 2, + [40032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2665), 1, anon_sym_LPAREN2, + ACTIONS(2919), 1, anon_sym_LBRACK, - [40132] = 5, - ACTIONS(2145), 1, + ACTIONS(3028), 1, + anon_sym_RPAREN, + STATE(1134), 1, + sym_parameter_list, + [40048] = 5, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2842), 1, - anon_sym_DQUOTE, - ACTIONS(2844), 1, + ACTIONS(2949), 1, aux_sym_string_literal_token1, - ACTIONS(2847), 1, + ACTIONS(2951), 1, sym_escape_sequence, - STATE(1152), 1, + ACTIONS(3030), 1, + anon_sym_DQUOTE, + STATE(1139), 1, aux_sym_string_literal_repeat1, - [40148] = 5, - ACTIONS(2145), 1, + [40064] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 1, - aux_sym_string_literal_token1, - ACTIONS(2767), 1, - sym_escape_sequence, - ACTIONS(2850), 1, - anon_sym_DQUOTE, + ACTIONS(3032), 1, + sym_identifier, + ACTIONS(3034), 1, + anon_sym_COMMA, + ACTIONS(3036), 1, + anon_sym_RBRACE, + STATE(1198), 1, + sym_enumerator, + [40080] = 5, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(3038), 1, + anon_sym_LF, + ACTIONS(3040), 1, + sym_preproc_arg, + STATE(1235), 1, + sym_preproc_params, + [40096] = 5, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(3042), 1, + anon_sym_LF, + ACTIONS(3044), 1, + sym_preproc_arg, + STATE(1231), 1, + sym_preproc_params, + [40112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(3046), 1, + anon_sym_SEMI, STATE(1152), 1, - aux_sym_string_literal_repeat1, + aux_sym_type_definition_repeat2, + [40125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2663), 1, + anon_sym_COMMA, + ACTIONS(3048), 1, + anon_sym_SEMI, + STATE(1188), 1, + aux_sym_declaration_repeat1, + [40138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(3052), 1, + anon_sym_RBRACK_RBRACK, + STATE(1205), 1, + aux_sym_attribute_declaration_repeat1, + [40151] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_COMMA, + ACTIONS(3057), 1, + anon_sym_SEMI, + STATE(1152), 1, + aux_sym_type_definition_repeat2, [40164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(3059), 1, + anon_sym_SEMI, + STATE(1152), 1, + aux_sym_type_definition_repeat2, + [40177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_LBRACE, + ACTIONS(3061), 1, + sym_identifier, + STATE(887), 1, + sym_enumerator_list, + [40190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2363), 1, + anon_sym_COMMA, + ACTIONS(3063), 1, + anon_sym_RPAREN, + STATE(1175), 1, + aux_sym_preproc_argument_list_repeat1, + [40203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2663), 1, + anon_sym_COMMA, + ACTIONS(3065), 1, + anon_sym_SEMI, + STATE(1207), 1, + aux_sym_declaration_repeat1, + [40216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(3067), 1, + anon_sym_SEMI, + STATE(1152), 1, + aux_sym_type_definition_repeat2, + [40229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_RBRACE, + STATE(1263), 1, + sym_enumerator, + [40242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 1, anon_sym_COMMA, - ACTIONS(2855), 1, + ACTIONS(3074), 1, anon_sym_RBRACE, - STATE(1154), 1, + STATE(1159), 1, aux_sym_enumerator_list_repeat1, - [40177] = 4, - ACTIONS(3), 1, + [40255] = 4, + ACTIONS(2316), 1, + anon_sym_LPAREN2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(2857), 1, - anon_sym_RPAREN, - STATE(1157), 1, - aux_sym_argument_list_repeat1, - [40190] = 4, + ACTIONS(3076), 1, + anon_sym_LF, + STATE(968), 1, + sym_preproc_argument_list, + [40268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2859), 1, + ACTIONS(3078), 1, anon_sym_SEMI, - STATE(1178), 1, + STATE(1188), 1, aux_sym_declaration_repeat1, - [40203] = 4, + [40281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, - anon_sym_RPAREN, - ACTIONS(2861), 1, + ACTIONS(2755), 1, anon_sym_COMMA, - STATE(1157), 1, - aux_sym_argument_list_repeat1, - [40216] = 3, + ACTIONS(3080), 1, + anon_sym_SEMI, + STATE(1152), 1, + aux_sym_type_definition_repeat2, + [40294] = 4, + ACTIONS(2316), 1, + anon_sym_LPAREN2, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3082), 1, + anon_sym_LF, + STATE(968), 1, + sym_preproc_argument_list, + [40307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, - anon_sym_EQ, - ACTIONS(2864), 2, + ACTIONS(2663), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [40227] = 4, + ACTIONS(3084), 1, + anon_sym_SEMI, + STATE(1188), 1, + aux_sym_declaration_repeat1, + [40320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(3050), 1, anon_sym_COMMA, - ACTIONS(2870), 1, + ACTIONS(3086), 1, anon_sym_RBRACK_RBRACK, - STATE(1176), 1, + STATE(1180), 1, aux_sym_attribute_declaration_repeat1, - [40240] = 4, + [40333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, - anon_sym_RPAREN, - ACTIONS(2872), 1, - anon_sym_COMMA, - STATE(1160), 1, - aux_sym_preproc_argument_list_repeat1, - [40253] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2875), 1, + ACTIONS(3088), 1, anon_sym_COMMA, - ACTIONS(2878), 1, + ACTIONS(3090), 1, anon_sym_RPAREN, - STATE(1161), 1, - aux_sym_preproc_params_repeat1, - [40266] = 4, + STATE(1187), 1, + aux_sym_parameter_list_repeat1, + [40346] = 4, + ACTIONS(2316), 1, + anon_sym_LPAREN2, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_LF, + STATE(968), 1, + sym_preproc_argument_list, + [40359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RBRACE, - STATE(1200), 1, - aux_sym_enumerator_list_repeat1, - [40279] = 4, + ACTIONS(3094), 1, + anon_sym_SEMI, + STATE(1161), 1, + aux_sym_declaration_repeat1, + [40372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(3050), 1, anon_sym_COMMA, - ACTIONS(2884), 1, + ACTIONS(3096), 1, anon_sym_RBRACK_RBRACK, - STATE(1174), 1, + STATE(1193), 1, aux_sym_attribute_declaration_repeat1, - [40292] = 4, + [40385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, - anon_sym_COMMA, - ACTIONS(2886), 1, - anon_sym_SEMI, - STATE(1205), 1, - aux_sym_declaration_repeat1, - [40305] = 4, - ACTIONS(2143), 1, - anon_sym_LPAREN2, - ACTIONS(2145), 1, + ACTIONS(2289), 1, + anon_sym_LBRACE, + ACTIONS(3098), 1, + sym_identifier, + STATE(890), 1, + sym_field_declaration_list, + [40398] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, - anon_sym_LF, - STATE(957), 1, - sym_preproc_argument_list, - [40318] = 4, + ACTIONS(2289), 1, + anon_sym_LBRACE, + ACTIONS(3100), 1, + sym_identifier, + STATE(889), 1, + sym_field_declaration_list, + [40411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 1, + ACTIONS(3102), 1, anon_sym_COMMA, - ACTIONS(2892), 1, + ACTIONS(3104), 1, anon_sym_RPAREN, - STATE(1210), 1, + STATE(1176), 1, aux_sym_preproc_params_repeat1, - [40331] = 4, + [40424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2109), 1, + anon_sym_RPAREN, + ACTIONS(3106), 1, anon_sym_COMMA, - ACTIONS(2894), 1, - anon_sym_SEMI, - STATE(1205), 1, - aux_sym_declaration_repeat1, - [40344] = 4, + STATE(1173), 1, + aux_sym_argument_list_repeat1, + [40437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2896), 1, + ACTIONS(3109), 1, anon_sym_SEMI, - STATE(1181), 1, + STATE(1184), 1, aux_sym_declaration_repeat1, - [40357] = 4, + [40450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, - anon_sym_COMMA, - ACTIONS(2901), 1, + ACTIONS(2523), 1, anon_sym_RPAREN, - STATE(1169), 1, - aux_sym_parameter_list_repeat1, - [40370] = 4, + ACTIONS(3111), 1, + anon_sym_COMMA, + STATE(1175), 1, + aux_sym_preproc_argument_list_repeat1, + [40463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym_LBRACE, - ACTIONS(2903), 1, - sym_identifier, - STATE(884), 1, - sym_field_declaration_list, - [40383] = 2, + ACTIONS(3114), 1, + anon_sym_COMMA, + ACTIONS(3117), 1, + anon_sym_RPAREN, + STATE(1176), 1, + aux_sym_preproc_params_repeat1, + [40476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [40392] = 4, - ACTIONS(2143), 1, + ACTIONS(2663), 1, + anon_sym_COMMA, + ACTIONS(3119), 1, + anon_sym_SEMI, + STATE(1202), 1, + aux_sym_declaration_repeat1, + [40489] = 4, + ACTIONS(2316), 1, anon_sym_LPAREN2, - ACTIONS(2145), 1, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2907), 1, + ACTIONS(3121), 1, anon_sym_LF, - STATE(957), 1, + STATE(968), 1, sym_preproc_argument_list, - [40405] = 4, + [40502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, - anon_sym_COMMA, - ACTIONS(2911), 1, + ACTIONS(3125), 1, anon_sym_RPAREN, - STATE(1209), 1, - aux_sym_parameter_list_repeat1, - [40418] = 4, + ACTIONS(3123), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [40513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(3050), 1, anon_sym_COMMA, - ACTIONS(2913), 1, + ACTIONS(3127), 1, anon_sym_RBRACK_RBRACK, STATE(1196), 1, aux_sym_attribute_declaration_repeat1, - [40431] = 4, + [40526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2363), 1, anon_sym_COMMA, - ACTIONS(2915), 1, - anon_sym_SEMI, - STATE(1205), 1, - aux_sym_declaration_repeat1, - [40444] = 4, + ACTIONS(3129), 1, + anon_sym_RPAREN, + STATE(1175), 1, + aux_sym_preproc_argument_list_repeat1, + [40539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(2037), 1, anon_sym_COMMA, - ACTIONS(2917), 1, - anon_sym_RBRACK_RBRACK, - STATE(1196), 1, - aux_sym_attribute_declaration_repeat1, - [40457] = 4, + ACTIONS(3131), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_argument_list_repeat1, + [40552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2919), 1, + ACTIONS(3133), 1, anon_sym_SEMI, - STATE(1205), 1, + STATE(1188), 1, aux_sym_declaration_repeat1, - [40470] = 4, + [40565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2921), 1, + ACTIONS(3135), 1, anon_sym_SEMI, - STATE(1205), 1, + STATE(1188), 1, aux_sym_declaration_repeat1, - [40483] = 4, + [40578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2551), 1, + ACTIONS(2069), 1, + anon_sym_RBRACE, + ACTIONS(3137), 1, + anon_sym_COMMA, + STATE(1185), 1, + aux_sym_initializer_list_repeat1, + [40591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, anon_sym_COMMA, - ACTIONS(2923), 1, + ACTIONS(3140), 1, anon_sym_SEMI, - STATE(1190), 1, + STATE(1152), 1, aux_sym_type_definition_repeat2, - [40496] = 4, + [40604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(3142), 1, anon_sym_COMMA, - ACTIONS(2925), 1, - anon_sym_SEMI, - STATE(1205), 1, - aux_sym_declaration_repeat1, - [40509] = 4, + ACTIONS(3145), 1, + anon_sym_RPAREN, + STATE(1187), 1, + aux_sym_parameter_list_repeat1, + [40617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(2927), 1, + ACTIONS(3150), 1, anon_sym_SEMI, - STATE(1205), 1, + STATE(1188), 1, aux_sym_declaration_repeat1, - [40522] = 4, + [40630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, - sym_identifier, - ACTIONS(2929), 1, - anon_sym_RBRACE, - STATE(1249), 1, - sym_enumerator, - [40535] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2170), 1, + ACTIONS(2037), 1, anon_sym_COMMA, - ACTIONS(2931), 1, + ACTIONS(3152), 1, anon_sym_RPAREN, - STATE(1160), 1, - aux_sym_preproc_argument_list_repeat1, - [40548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1891), 1, - anon_sym_RBRACE, - ACTIONS(2933), 1, - anon_sym_COMMA, - STATE(1184), 1, - aux_sym_initializer_list_repeat1, - [40561] = 4, - ACTIONS(2143), 1, - anon_sym_LPAREN2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2936), 1, - anon_sym_LF, - STATE(957), 1, - sym_preproc_argument_list, - [40574] = 4, + STATE(1173), 1, + aux_sym_argument_list_repeat1, + [40643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2551), 1, + ACTIONS(2755), 1, anon_sym_COMMA, - ACTIONS(2938), 1, + ACTIONS(3154), 1, anon_sym_SEMI, - STATE(1190), 1, + STATE(1152), 1, aux_sym_type_definition_repeat2, - [40587] = 2, + [40656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 3, + ACTIONS(3156), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [40596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2942), 1, - anon_sym_SEMI, - STATE(1190), 1, - aux_sym_type_definition_repeat2, - [40609] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2944), 1, - anon_sym_SEMI, - STATE(1190), 1, - aux_sym_type_definition_repeat2, - [40622] = 4, + [40665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2949), 1, + ACTIONS(3158), 1, anon_sym_SEMI, - STATE(1190), 1, - aux_sym_type_definition_repeat2, - [40635] = 4, - ACTIONS(2143), 1, - anon_sym_LPAREN2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2951), 1, - anon_sym_LF, - STATE(957), 1, - sym_preproc_argument_list, - [40648] = 4, + STATE(1188), 1, + aux_sym_declaration_repeat1, + [40678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(3050), 1, anon_sym_COMMA, - ACTIONS(2953), 1, + ACTIONS(3160), 1, anon_sym_RBRACK_RBRACK, - STATE(1212), 1, + STATE(1196), 1, aux_sym_attribute_declaration_repeat1, - [40661] = 4, + [40691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2551), 1, + ACTIONS(3162), 1, anon_sym_COMMA, - ACTIONS(2955), 1, - anon_sym_SEMI, - STATE(1190), 1, - aux_sym_type_definition_repeat2, - [40674] = 3, + ACTIONS(3164), 1, + anon_sym_RBRACE, + STATE(1159), 1, + aux_sym_enumerator_list_repeat1, + [40704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_RPAREN, - ACTIONS(2957), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(3032), 1, sym_identifier, - [40685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2961), 1, - anon_sym_SEMI, - STATE(1190), 1, - aux_sym_type_definition_repeat2, - [40698] = 4, + ACTIONS(3164), 1, + anon_sym_RBRACE, + STATE(1263), 1, + sym_enumerator, + [40717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 1, + ACTIONS(3166), 1, anon_sym_COMMA, - ACTIONS(2966), 1, + ACTIONS(3169), 1, anon_sym_RBRACK_RBRACK, STATE(1196), 1, aux_sym_attribute_declaration_repeat1, - [40711] = 4, + [40730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(3173), 1, + anon_sym_EQ, + ACTIONS(3171), 2, anon_sym_COMMA, - ACTIONS(2968), 1, - anon_sym_SEMI, - STATE(1164), 1, - aux_sym_declaration_repeat1, - [40724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 1, - sym_identifier, - ACTIONS(2970), 1, anon_sym_RBRACE, - STATE(1249), 1, - sym_enumerator, - [40737] = 4, + [40741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(3175), 1, anon_sym_COMMA, - ACTIONS(2972), 1, - anon_sym_SEMI, - STATE(1175), 1, - aux_sym_declaration_repeat1, - [40750] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2970), 1, + ACTIONS(3177), 1, anon_sym_RBRACE, - ACTIONS(2974), 1, - anon_sym_COMMA, - STATE(1154), 1, + STATE(1194), 1, aux_sym_enumerator_list_repeat1, - [40763] = 4, + [40754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2755), 1, anon_sym_COMMA, - ACTIONS(2976), 1, + ACTIONS(3179), 1, anon_sym_SEMI, - STATE(1205), 1, - aux_sym_declaration_repeat1, + STATE(1152), 1, + aux_sym_type_definition_repeat2, + [40767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3181), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, [40776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2551), 1, + ACTIONS(1522), 1, + anon_sym_RBRACE, + ACTIONS(3183), 1, anon_sym_COMMA, - ACTIONS(2978), 1, - anon_sym_SEMI, - STATE(1190), 1, - aux_sym_type_definition_repeat2, + STATE(1185), 1, + aux_sym_initializer_list_repeat1, [40789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_RBRACE, - STATE(1213), 1, - aux_sym_initializer_list_repeat1, + ACTIONS(3185), 1, + anon_sym_SEMI, + STATE(1188), 1, + aux_sym_declaration_repeat1, [40802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, - sym_identifier, - STATE(888), 1, - sym_field_declaration_list, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(3187), 1, + anon_sym_SEMI, + STATE(1152), 1, + aux_sym_type_definition_repeat2, [40815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 1, + ACTIONS(3102), 1, anon_sym_COMMA, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1205), 1, - aux_sym_declaration_repeat1, + ACTIONS(3189), 1, + anon_sym_RPAREN, + STATE(1172), 1, + aux_sym_preproc_params_repeat1, [40828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(3050), 1, anon_sym_COMMA, - ACTIONS(2987), 1, - anon_sym_RPAREN, - STATE(1157), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3191), 1, + anon_sym_RBRACK_RBRACK, + STATE(1196), 1, + aux_sym_attribute_declaration_repeat1, [40841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 1, + ACTIONS(2005), 1, anon_sym_COMMA, - ACTIONS(2989), 1, - anon_sym_RPAREN, - STATE(1160), 1, - aux_sym_preproc_argument_list_repeat1, + ACTIONS(2007), 1, + anon_sym_RBRACE, + STATE(1201), 1, + aux_sym_initializer_list_repeat1, [40854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, - anon_sym_LBRACE, - ACTIONS(2991), 1, - sym_identifier, - STATE(877), 1, - sym_enumerator_list, + ACTIONS(2663), 1, + anon_sym_COMMA, + ACTIONS(3193), 1, + anon_sym_SEMI, + STATE(1188), 1, + aux_sym_declaration_repeat1, [40867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(3088), 1, anon_sym_COMMA, - ACTIONS(2993), 1, + ACTIONS(3195), 1, anon_sym_RPAREN, - STATE(1169), 1, + STATE(1166), 1, aux_sym_parameter_list_repeat1, - [40880] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2890), 1, - anon_sym_COMMA, - ACTIONS(2995), 1, - anon_sym_RPAREN, - STATE(1161), 1, - aux_sym_preproc_params_repeat1, - [40893] = 4, + [40880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2997), 1, - anon_sym_SEMI, - STATE(1190), 1, - aux_sym_type_definition_repeat2, - [40906] = 4, + ACTIONS(3032), 1, + sym_identifier, + STATE(1263), 1, + sym_enumerator, + [40890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(3197), 2, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_RBRACK_RBRACK, - STATE(1196), 1, - aux_sym_attribute_declaration_repeat1, - [40919] = 4, + anon_sym_RPAREN, + [40898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1325), 1, - anon_sym_RBRACE, - ACTIONS(3001), 1, - anon_sym_COMMA, - STATE(1184), 1, - aux_sym_initializer_list_repeat1, - [40932] = 3, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(3003), 1, - anon_sym_LF, - ACTIONS(3005), 1, - sym_preproc_arg, - [40942] = 2, - ACTIONS(2145), 1, + ACTIONS(3199), 1, + anon_sym_LPAREN2, + STATE(1384), 1, + sym_parenthesized_expression, + [40908] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3007), 2, + ACTIONS(3201), 2, anon_sym_LF, sym_preproc_arg, - [40950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1891), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [40958] = 3, + [40916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_LPAREN2, - STATE(1444), 1, - sym_parenthesized_expression, - [40968] = 3, + ACTIONS(2043), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [40924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, - sym_identifier, - STATE(1249), 1, - sym_enumerator, - [40978] = 2, + ACTIONS(363), 1, + anon_sym_LBRACE, + STATE(269), 1, + sym_compound_statement, + [40934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 2, + ACTIONS(3169), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [40986] = 2, + [40942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(3199), 1, + anon_sym_LPAREN2, + STATE(1323), 1, + sym_parenthesized_expression, + [40952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3203), 1, sym_identifier, - [40994] = 2, + STATE(1165), 1, + sym_attribute, + [40962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [41002] = 3, - ACTIONS(2145), 1, + ACTIONS(3199), 1, + anon_sym_LPAREN2, + STATE(1249), 1, + sym_parenthesized_expression, + [40972] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LF, - ACTIONS(3015), 1, - sym_preproc_arg, - [41012] = 3, - ACTIONS(2145), 1, + ACTIONS(3205), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [40980] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3017), 1, + ACTIONS(3207), 1, anon_sym_LF, - ACTIONS(3019), 1, + ACTIONS(3209), 1, sym_preproc_arg, - [41022] = 3, + [40990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN2, - STATE(330), 1, - sym_parenthesized_expression, - [41032] = 3, + ACTIONS(3203), 1, + sym_identifier, + STATE(1215), 1, + sym_attribute, + [41000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - STATE(323), 1, + STATE(266), 1, sym_parenthesized_expression, - [41042] = 2, + [41010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 2, + ACTIONS(3213), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [41050] = 2, + anon_sym_RBRACK_RBRACK, + [41018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41058] = 3, - ACTIONS(2145), 1, + ACTIONS(3211), 1, + anon_sym_LPAREN2, + STATE(261), 1, + sym_parenthesized_expression, + [41028] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3025), 1, + ACTIONS(3215), 1, anon_sym_LF, - ACTIONS(3027), 1, + ACTIONS(3217), 1, sym_preproc_arg, - [41068] = 2, + [41038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 2, + ACTIONS(2097), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [41076] = 2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(3029), 2, - anon_sym_LF, - sym_preproc_arg, - [41084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 2, - anon_sym_RPAREN, anon_sym_SEMI, - [41092] = 2, + [41046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 2, + ACTIONS(2069), 2, anon_sym_COMMA, - anon_sym_SEMI, - [41100] = 3, + anon_sym_RBRACE, + [41054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(1328), 1, + STATE(1373), 1, sym_parenthesized_expression, - [41110] = 2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(3031), 2, - anon_sym_LF, - sym_preproc_arg, - [41118] = 3, + [41064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_LBRACE, - STATE(156), 1, - sym_compound_statement, - [41128] = 2, + ACTIONS(3145), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 2, + ACTIONS(2761), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [41136] = 3, + anon_sym_SEMI, + [41080] = 3, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3219), 1, + anon_sym_LF, + ACTIONS(3221), 1, + sym_preproc_arg, + [41090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, - anon_sym_LBRACE, - STATE(85), 1, - sym_compound_statement, - [41146] = 3, + ACTIONS(2073), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(354), 1, + STATE(1239), 1, sym_parenthesized_expression, - [41156] = 3, + [41108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, + ACTIONS(3223), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(1159), 1, - sym_attribute, - [41166] = 3, - ACTIONS(2145), 1, + [41116] = 3, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3225), 1, + anon_sym_LF, + ACTIONS(3227), 1, + sym_preproc_arg, + [41126] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(3229), 2, anon_sym_LF, - ACTIONS(3037), 1, sym_preproc_arg, - [41176] = 3, - ACTIONS(3), 1, + [41134] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_LPAREN2, - STATE(1237), 1, - sym_parenthesized_expression, - [41186] = 3, + ACTIONS(3231), 2, + anon_sym_LF, + sym_preproc_arg, + [41142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN2, - STATE(352), 1, - sym_parenthesized_expression, - [41196] = 2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(3039), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [41204] = 3, + ACTIONS(3117), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, - sym_identifier, - STATE(1219), 1, - sym_attribute, - [41214] = 2, + ACTIONS(321), 1, + anon_sym_LBRACE, + STATE(222), 1, + sym_compound_statement, + [41160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [41222] = 3, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + STATE(1356), 1, + sym_argument_list, + [41170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(1340), 1, + STATE(1290), 1, sym_parenthesized_expression, - [41232] = 3, + [41180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN2, - STATE(334), 1, - sym_parenthesized_expression, - [41242] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_compound_statement, + [41190] = 2, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3233), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [41198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(346), 1, + STATE(1214), 1, sym_parenthesized_expression, - [41252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41260] = 2, + [41208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [41268] = 2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(3045), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [41276] = 3, + ACTIONS(3203), 1, + sym_identifier, + STATE(1151), 1, + sym_attribute, + [41218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 1, - sym_identifier, - ACTIONS(3049), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - [41286] = 3, - ACTIONS(2145), 1, + STATE(1378), 1, + sym_argument_list, + [41228] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(3235), 1, anon_sym_LF, - ACTIONS(3053), 1, + ACTIONS(3237), 1, sym_preproc_arg, - [41296] = 3, - ACTIONS(2145), 1, + [41238] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(3239), 1, anon_sym_LF, - ACTIONS(3057), 1, + ACTIONS(3241), 1, sym_preproc_arg, - [41306] = 3, + [41248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, + ACTIONS(115), 1, anon_sym_LBRACE, - STATE(172), 1, + STATE(69), 1, sym_compound_statement, - [41316] = 3, + [41258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3243), 1, + sym_identifier, + ACTIONS(3245), 1, anon_sym_LPAREN2, - STATE(1235), 1, - sym_parenthesized_expression, - [41326] = 3, + [41268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(3247), 1, + sym_identifier, + ACTIONS(3249), 1, anon_sym_LPAREN2, - STATE(1361), 1, - sym_argument_list, - [41336] = 3, - ACTIONS(2145), 1, + [41278] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3251), 1, anon_sym_LF, - ACTIONS(3061), 1, + ACTIONS(3253), 1, sym_preproc_arg, - [41346] = 3, + [41288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - STATE(1306), 1, + STATE(186), 1, sym_parenthesized_expression, - [41356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_compound_statement, - [41366] = 3, - ACTIONS(2145), 1, + [41298] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3063), 1, + ACTIONS(3255), 1, anon_sym_LF, - ACTIONS(3065), 1, + ACTIONS(3257), 1, sym_preproc_arg, - [41376] = 3, + [41308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - STATE(1383), 1, - sym_argument_list, - [41386] = 3, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(3067), 1, - anon_sym_LF, - ACTIONS(3069), 1, - sym_preproc_arg, - [41396] = 3, - ACTIONS(2145), 1, + STATE(135), 1, + sym_parenthesized_expression, + [41318] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3071), 1, - anon_sym_LF, - ACTIONS(3073), 1, - sym_preproc_arg, - [41406] = 3, + ACTIONS(3259), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [41326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - sym_identifier, - ACTIONS(3077), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - [41416] = 3, - ACTIONS(2145), 1, + STATE(309), 1, + sym_parenthesized_expression, + [41336] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3079), 1, + ACTIONS(3261), 1, anon_sym_LF, - ACTIONS(3081), 1, + ACTIONS(3263), 1, sym_preproc_arg, - [41426] = 3, - ACTIONS(2145), 1, + [41346] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3083), 1, + ACTIONS(3265), 1, anon_sym_LF, - ACTIONS(3085), 1, + ACTIONS(3267), 1, sym_preproc_arg, - [41436] = 2, - ACTIONS(2145), 1, + [41356] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [41444] = 3, - ACTIONS(2145), 1, + ACTIONS(3199), 1, + anon_sym_LPAREN2, + STATE(1242), 1, + sym_parenthesized_expression, + [41366] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3269), 1, anon_sym_LF, - ACTIONS(3091), 1, + ACTIONS(3271), 1, sym_preproc_arg, - [41454] = 3, + [41376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - STATE(322), 1, + STATE(133), 1, sym_parenthesized_expression, - [41464] = 3, + [41386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_LPAREN2, - STATE(1260), 1, - sym_parenthesized_expression, - [41474] = 3, + ACTIONS(3074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3273), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [41402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - STATE(320), 1, + STATE(295), 1, sym_parenthesized_expression, - [41484] = 3, + [41412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, + ACTIONS(3203), 1, sym_identifier, - STATE(1192), 1, + STATE(1169), 1, sym_attribute, - [41494] = 3, + [41422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - STATE(1255), 1, + STATE(189), 1, sym_parenthesized_expression, - [41504] = 3, - ACTIONS(3), 1, + [41432] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3033), 1, - sym_identifier, - STATE(1163), 1, - sym_attribute, - [41514] = 2, - ACTIONS(2145), 1, + ACTIONS(3275), 1, + anon_sym_LF, + ACTIONS(3277), 1, + sym_preproc_arg, + [41442] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3093), 1, + ACTIONS(3279), 1, anon_sym_LF, - [41521] = 2, - ACTIONS(3), 1, + ACTIONS(3281), 1, + sym_preproc_arg, + [41452] = 3, + ACTIONS(2318), 1, sym_comment, - ACTIONS(1941), 1, - anon_sym_RPAREN, - [41528] = 2, + ACTIONS(3283), 1, + anon_sym_LF, + ACTIONS(3285), 1, + sym_preproc_arg, + [41462] = 2, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3287), 1, + anon_sym_LF, + [41469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - anon_sym_RPAREN, - [41535] = 2, + ACTIONS(3289), 1, + anon_sym_SEMI, + [41476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 1, - aux_sym_preproc_if_token2, - [41542] = 2, + ACTIONS(2119), 1, + anon_sym_RPAREN, + [41483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, - anon_sym_SEMI, - [41549] = 2, + ACTIONS(2061), 1, + anon_sym_RPAREN, + [41490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_SEMI, - [41556] = 2, + ACTIONS(3291), 1, + anon_sym_RPAREN, + [41497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 1, + ACTIONS(2111), 1, anon_sym_RPAREN, - [41563] = 2, + [41504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(3293), 1, sym_identifier, - [41570] = 2, + [41511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + ACTIONS(2105), 1, anon_sym_RPAREN, - [41577] = 2, + [41518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_RBRACE, - [41584] = 2, + [41525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(2103), 1, anon_sym_RPAREN, - [41591] = 2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2888), 1, - anon_sym_LF, - [41598] = 2, + [41532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 1, + ACTIONS(2123), 1, anon_sym_SEMI, - [41605] = 2, + [41539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(2101), 1, anon_sym_RPAREN, - [41612] = 2, + [41546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, - aux_sym_preproc_if_token2, - [41619] = 2, - ACTIONS(2145), 1, + ACTIONS(3295), 1, + anon_sym_SEMI, + [41553] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, - anon_sym_LF, - [41626] = 2, - ACTIONS(2145), 1, + ACTIONS(3297), 1, + anon_sym_SQUOTE, + [41560] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 1, - anon_sym_LF, - [41633] = 2, - ACTIONS(2145), 1, + ACTIONS(2099), 1, + anon_sym_RPAREN, + [41567] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 1, - anon_sym_LF, - [41640] = 2, + ACTIONS(3299), 1, + anon_sym_COLON, + [41574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(3301), 1, aux_sym_preproc_if_token2, - [41647] = 2, - ACTIONS(2145), 1, + [41581] = 2, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3303), 1, + anon_sym_LF, + [41588] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3113), 1, + ACTIONS(3305), 1, anon_sym_LF, - [41654] = 2, + [41595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3307), 1, anon_sym_SEMI, - [41661] = 2, + [41602] = 2, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3309), 1, + anon_sym_LF, + [41609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3311), 1, aux_sym_preproc_if_token2, - [41668] = 2, - ACTIONS(2145), 1, + [41616] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(2127), 1, + anon_sym_RPAREN, + [41623] = 2, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3313), 1, anon_sym_LF, - [41675] = 2, - ACTIONS(2145), 1, + [41630] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3121), 1, + ACTIONS(3315), 1, anon_sym_LF, - [41682] = 2, + [41637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1953), 1, - anon_sym_SEMI, - [41689] = 2, - ACTIONS(2145), 1, + ACTIONS(3317), 1, + aux_sym_preproc_if_token2, + [41644] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3319), 1, anon_sym_LF, - [41696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 1, - anon_sym_SEMI, - [41703] = 2, - ACTIONS(3), 1, + [41651] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(1955), 1, - anon_sym_RPAREN, - [41710] = 2, - ACTIONS(2145), 1, + ACTIONS(3321), 1, + anon_sym_LF, + [41658] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3323), 1, anon_sym_LF, - [41717] = 2, - ACTIONS(2145), 1, + [41665] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(3325), 1, anon_sym_LF, - [41724] = 2, + [41672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3131), 1, - anon_sym_SEMI, - [41731] = 2, - ACTIONS(2145), 1, + ACTIONS(3327), 1, + aux_sym_preproc_if_token2, + [41679] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3133), 1, + ACTIONS(3329), 1, + anon_sym_LF, + [41686] = 2, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3331), 1, anon_sym_LF, - [41738] = 2, + [41693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 1, - anon_sym_COLON, - [41745] = 2, + ACTIONS(3333), 1, + aux_sym_preproc_if_token2, + [41700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 1, + ACTIONS(3335), 1, sym_identifier, - [41752] = 2, + [41707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3337), 1, sym_identifier, - [41759] = 2, - ACTIONS(2145), 1, + [41714] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, - anon_sym_LF, - [41766] = 2, + ACTIONS(3339), 1, + anon_sym_SEMI, + [41721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3341), 1, aux_sym_preproc_if_token2, - [41773] = 2, - ACTIONS(2145), 1, + [41728] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3145), 1, + ACTIONS(3343), 1, anon_sym_LF, - [41780] = 2, + [41735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 1, + ACTIONS(2159), 1, anon_sym_RPAREN, - [41787] = 2, + [41742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(2135), 1, anon_sym_RPAREN, - [41794] = 2, + [41749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3345), 1, sym_identifier, - [41801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - aux_sym_preproc_if_token2, - [41808] = 2, + [41756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, - anon_sym_RPAREN, - [41815] = 2, + ACTIONS(3347), 1, + anon_sym_SEMI, + [41763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(3349), 1, aux_sym_preproc_if_token2, - [41822] = 2, + [41770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1947), 1, - anon_sym_RPAREN, - [41829] = 2, + ACTIONS(2155), 1, + anon_sym_SEMI, + [41777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 1, + ACTIONS(2153), 1, anon_sym_RPAREN, - [41836] = 2, - ACTIONS(3), 1, + [41784] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(1967), 1, - anon_sym_RPAREN, - [41843] = 2, - ACTIONS(3), 1, + ACTIONS(3351), 1, + anon_sym_LF, + [41791] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3153), 1, - anon_sym_SEMI, - [41850] = 2, - ACTIONS(3), 1, + ACTIONS(3092), 1, + anon_sym_LF, + [41798] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3155), 1, - aux_sym_preproc_if_token2, - [41857] = 2, + ACTIONS(3121), 1, + anon_sym_LF, + [41805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 1, - aux_sym_preproc_if_token2, - [41864] = 2, + ACTIONS(2151), 1, + anon_sym_SEMI, + [41812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, - aux_sym_preproc_if_token2, - [41871] = 2, + ACTIONS(3353), 1, + anon_sym_SEMI, + [41819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 1, - aux_sym_preproc_if_token2, - [41878] = 2, + ACTIONS(3355), 1, + anon_sym_SEMI, + [41826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3357), 1, anon_sym_SEMI, - [41885] = 2, + [41833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 1, + ACTIONS(3359), 1, anon_sym_SEMI, - [41892] = 2, + [41840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - aux_sym_preproc_if_token2, - [41899] = 2, + ACTIONS(3361), 1, + anon_sym_COLON, + [41847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(3363), 1, anon_sym_STAR, - [41906] = 2, + [41854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_RPAREN, - [41913] = 2, + ACTIONS(2115), 1, + anon_sym_SEMI, + [41861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, - aux_sym_preproc_if_token2, - [41920] = 2, + ACTIONS(2137), 1, + anon_sym_RPAREN, + [41868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, - anon_sym_SEMI, - [41927] = 2, + ACTIONS(3365), 1, + aux_sym_preproc_if_token2, + [41875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3367), 1, aux_sym_preproc_if_token2, - [41934] = 2, + [41882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, + ACTIONS(2139), 1, anon_sym_RPAREN, - [41941] = 2, + [41889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - aux_sym_preproc_if_token2, - [41948] = 2, + ACTIONS(2131), 1, + anon_sym_RPAREN, + [41896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1901), 1, + ACTIONS(2129), 1, anon_sym_RPAREN, - [41955] = 2, + [41903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(2141), 1, anon_sym_RPAREN, - [41962] = 2, + [41910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, - anon_sym_SEMI, - [41969] = 2, + ACTIONS(3369), 1, + anon_sym_RPAREN, + [41917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3371), 1, sym_identifier, - [41976] = 2, + [41924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3373), 1, anon_sym_SEMI, - [41983] = 2, + [41931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3375), 1, aux_sym_preproc_if_token2, - [41990] = 2, + [41938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3377), 1, sym_identifier, - [41997] = 2, + [41945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, - aux_sym_preproc_if_token2, - [42004] = 2, + ACTIONS(2107), 1, + anon_sym_RPAREN, + [41952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 1, - aux_sym_preproc_if_token2, - [42011] = 2, + ACTIONS(3379), 1, + anon_sym_SEMI, + [41959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, - anon_sym_RPAREN, - [42018] = 2, + ACTIONS(3381), 1, + aux_sym_preproc_if_token2, + [41966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3383), 1, anon_sym_RPAREN, - [42025] = 2, + [41973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3385), 1, aux_sym_preproc_if_token2, - [42032] = 2, + [41980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1933), 1, - anon_sym_RPAREN, - [42039] = 2, + ACTIONS(3387), 1, + aux_sym_preproc_if_token2, + [41987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3389), 1, aux_sym_preproc_if_token2, - [42046] = 2, + [41994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3391), 1, aux_sym_preproc_if_token2, - [42053] = 2, + [42001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3393), 1, aux_sym_preproc_if_token2, - [42060] = 2, + [42008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3395), 1, anon_sym_RPAREN, - [42067] = 2, - ACTIONS(2145), 1, + [42015] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(3397), 1, anon_sym_LF, - [42074] = 2, + [42022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, - aux_sym_preproc_if_token2, - [42081] = 2, - ACTIONS(2145), 1, + ACTIONS(2093), 1, + anon_sym_RPAREN, + [42029] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, - anon_sym_LF, - [42088] = 2, + ACTIONS(3399), 1, + aux_sym_preproc_if_token2, + [42036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, - anon_sym_SQUOTE, - [42095] = 2, + ACTIONS(2083), 1, + anon_sym_RPAREN, + [42043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(3401), 1, aux_sym_preproc_if_token2, - [42102] = 2, + [42050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3217), 1, + ACTIONS(3403), 1, sym_identifier, - [42109] = 2, + [42057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(3405), 1, anon_sym_STAR, - [42116] = 2, + [42064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(3407), 1, anon_sym_SEMI, - [42123] = 2, + [42071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, + ACTIONS(3409), 1, anon_sym_RPAREN, - [42130] = 2, + [42078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_SEMI, - [42137] = 2, + ACTIONS(3411), 1, + aux_sym_preproc_if_token2, + [42085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3413), 1, anon_sym_RPAREN, - [42144] = 2, + [42092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1939), 1, + ACTIONS(2071), 1, anon_sym_SEMI, - [42151] = 2, - ACTIONS(3), 1, + [42099] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3227), 1, - anon_sym_SEMI, - [42158] = 2, + ACTIONS(3415), 1, + anon_sym_LF, + [42106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 1, + ACTIONS(3417), 1, sym_identifier, - [42165] = 2, - ACTIONS(1446), 1, - anon_sym_LF, - ACTIONS(2145), 1, + [42113] = 2, + ACTIONS(3), 1, sym_comment, - [42172] = 2, + ACTIONS(3419), 1, + aux_sym_preproc_if_token2, + [42120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3231), 1, + ACTIONS(3421), 1, sym_identifier, - [42179] = 2, + [42127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3423), 1, sym_identifier, - [42186] = 2, - ACTIONS(1436), 1, - anon_sym_LF, - ACTIONS(2145), 1, + [42134] = 2, + ACTIONS(3), 1, sym_comment, - [42193] = 2, + ACTIONS(3425), 1, + aux_sym_preproc_if_token2, + [42141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 1, + ACTIONS(3177), 1, anon_sym_RBRACE, - [42200] = 2, + [42148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 1, - anon_sym_COLON, - [42207] = 2, + ACTIONS(2063), 1, + anon_sym_RPAREN, + [42155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3237), 1, + ACTIONS(2113), 1, anon_sym_RPAREN, - [42214] = 2, + [42162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3427), 1, anon_sym_RPAREN, - [42221] = 2, + [42169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3429), 1, sym_identifier, - [42228] = 2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(3243), 1, - anon_sym_LF, - [42235] = 2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(2907), 1, - anon_sym_LF, - [42242] = 2, + [42176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1961), 1, + ACTIONS(3431), 1, anon_sym_SEMI, - [42249] = 2, + [42183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 1, + ACTIONS(3433), 1, anon_sym_SEMI, - [42256] = 2, + [42190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(2067), 1, + anon_sym_RPAREN, + [42197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3435), 1, + aux_sym_preproc_if_token2, + [42204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3437), 1, sym_identifier, - [42263] = 2, + [42211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3439), 1, anon_sym_RPAREN, - [42270] = 2, + [42218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, - anon_sym_SEMI, - [42277] = 2, + ACTIONS(2065), 1, + anon_sym_RPAREN, + [42225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 1, + ACTIONS(3441), 1, anon_sym_STAR, - [42284] = 2, + [42232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 1, + ACTIONS(3443), 1, sym_identifier, - [42291] = 2, + [42239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 1, - anon_sym_SEMI, - [42298] = 2, + ACTIONS(3445), 1, + aux_sym_preproc_if_token2, + [42246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 1, - anon_sym_SEMI, - [42305] = 2, + ACTIONS(3447), 1, + aux_sym_preproc_if_token2, + [42253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(3449), 1, anon_sym_SEMI, - [42312] = 2, + [42260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, - anon_sym_COLON, - [42319] = 2, - ACTIONS(2145), 1, + ACTIONS(2157), 1, + anon_sym_RPAREN, + [42267] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - anon_sym_LF, - [42326] = 2, + ACTIONS(3451), 1, + anon_sym_SEMI, + [42274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 1, + ACTIONS(3453), 1, aux_sym_preproc_if_token2, - [42333] = 2, + [42281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3455), 1, sym_identifier, - [42340] = 2, - ACTIONS(2145), 1, + [42288] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(3457), 1, anon_sym_LF, - [42347] = 2, - ACTIONS(2145), 1, + [42295] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3459), 1, anon_sym_LF, - [42354] = 2, + [42302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3461), 1, sym_identifier, - [42361] = 2, + [42309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(3463), 1, sym_identifier, - [42368] = 2, + [42316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(3465), 1, anon_sym_RPAREN, - [42375] = 2, + [42323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, - anon_sym_SEMI, - [42382] = 2, + ACTIONS(3467), 1, + aux_sym_preproc_if_token2, + [42330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3469), 1, sym_identifier, - [42389] = 2, + [42337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, + ACTIONS(3471), 1, sym_identifier, - [42396] = 2, + [42344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3281), 1, - anon_sym_SEMI, - [42403] = 2, + ACTIONS(3473), 1, + aux_sym_preproc_if_token2, + [42351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3283), 1, + ACTIONS(3475), 1, anon_sym_STAR, - [42410] = 2, + [42358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 1, - anon_sym_SQUOTE, - [42417] = 2, ACTIONS(2145), 1, + anon_sym_RPAREN, + [42365] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 1, - anon_sym_LF, - [42424] = 2, + ACTIONS(3477), 1, + anon_sym_SEMI, + [42372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3479), 1, anon_sym_SQUOTE, - [42431] = 2, - ACTIONS(3), 1, + [42379] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(1949), 1, - anon_sym_RPAREN, - [42438] = 2, + ACTIONS(3481), 1, + anon_sym_LF, + [42386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3483), 1, anon_sym_SEMI, - [42445] = 2, + [42393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(2095), 1, anon_sym_SEMI, - [42452] = 2, + [42400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3485), 1, anon_sym_while, - [42459] = 2, + [42407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 1, + ACTIONS(3487), 1, aux_sym_preproc_if_token2, - [42466] = 2, + [42414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, - aux_sym_preproc_if_token2, - [42473] = 2, + ACTIONS(3489), 1, + anon_sym_SQUOTE, + [42421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1965), 1, - anon_sym_RPAREN, - [42480] = 2, + ACTIONS(3491), 1, + anon_sym_SEMI, + [42428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 1, + ACTIONS(3493), 1, sym_identifier, - [42487] = 2, + [42435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3495), 1, sym_identifier, - [42494] = 2, + [42442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 1, + ACTIONS(3497), 1, sym_identifier, - [42501] = 2, + [42449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1935), 1, + ACTIONS(3499), 1, anon_sym_RPAREN, - [42508] = 2, + [42456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3501), 1, sym_identifier, - [42515] = 2, + [42463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, - anon_sym_RPAREN, - [42522] = 2, + ACTIONS(2147), 1, + anon_sym_SEMI, + [42470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_RPAREN, - [42529] = 2, + ACTIONS(3503), 1, + aux_sym_preproc_if_token2, + [42477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_SEMI, - [42536] = 2, + ACTIONS(3505), 1, + aux_sym_preproc_if_token2, + [42484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3507), 1, anon_sym_RPAREN, - [42543] = 2, + [42491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(2121), 1, anon_sym_RPAREN, - [42550] = 2, - ACTIONS(2145), 1, + [42498] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3509), 1, anon_sym_LF, - [42557] = 2, + [42505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3511), 1, anon_sym_RPAREN, - [42564] = 2, - ACTIONS(3), 1, + [42512] = 2, + ACTIONS(1641), 1, + anon_sym_LF, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3317), 1, - aux_sym_preproc_if_token2, - [42571] = 2, + [42519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3513), 1, anon_sym_while, - [42578] = 2, + [42526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3515), 1, aux_sym_preproc_if_token2, - [42585] = 2, - ACTIONS(3), 1, + [42533] = 2, + ACTIONS(1645), 1, + anon_sym_LF, + ACTIONS(2318), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_RPAREN, - [42592] = 2, - ACTIONS(2145), 1, + [42540] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(3082), 1, anon_sym_LF, - [42599] = 2, + [42547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2125), 1, anon_sym_SEMI, - [42606] = 2, + [42554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, + ACTIONS(2133), 1, anon_sym_SEMI, - [42613] = 2, + [42561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 1, + ACTIONS(3517), 1, ts_builtin_sym_end, - [42620] = 2, - ACTIONS(2145), 1, - sym_comment, - ACTIONS(3325), 1, - anon_sym_LF, - [42627] = 2, + [42568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - aux_sym_preproc_if_token2, - [42634] = 2, + ACTIONS(3519), 1, + anon_sym_RPAREN, + [42575] = 2, + ACTIONS(2318), 1, + sym_comment, + ACTIONS(3521), 1, + anon_sym_LF, + [42582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3523), 1, sym_identifier, - [42641] = 2, + [42589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3525), 1, anon_sym_SEMI, - [42648] = 2, + [42596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3527), 1, anon_sym_while, - [42655] = 2, + [42603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3529), 1, anon_sym_SEMI, - [42662] = 2, + [42610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(3531), 1, anon_sym_LPAREN2, - [42669] = 2, + [42617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 1, - anon_sym_RPAREN, - [42676] = 2, + ACTIONS(3533), 1, + anon_sym_COLON, + [42624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 1, + ACTIONS(2143), 1, anon_sym_SEMI, - [42683] = 2, + [42631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3535), 1, anon_sym_COLON, - [42690] = 2, - ACTIONS(3), 1, + [42638] = 2, + ACTIONS(2318), 1, sym_comment, - ACTIONS(3341), 1, - anon_sym_SEMI, - [42697] = 2, + ACTIONS(3076), 1, + anon_sym_LF, + [42645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 1, - anon_sym_RPAREN, - [42704] = 2, + ACTIONS(2059), 1, + anon_sym_SEMI, + [42652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 1, - anon_sym_SEMI, - [42711] = 2, + ACTIONS(3537), 1, + aux_sym_preproc_if_token2, + [42659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(3539), 1, anon_sym_while, - [42718] = 2, + [42666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, + ACTIONS(3541), 1, anon_sym_SEMI, - [42725] = 2, + [42673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_RPAREN, - [42732] = 2, + ACTIONS(3543), 1, + anon_sym_SEMI, + [42680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1959), 1, + ACTIONS(2149), 1, anon_sym_SEMI, - [42739] = 2, + [42687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3545), 1, anon_sym_LPAREN2, - [42746] = 2, + [42694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 1, - aux_sym_preproc_if_token2, - [42753] = 2, + ACTIONS(3547), 1, + anon_sym_SEMI, + [42701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 1, + ACTIONS(3549), 1, anon_sym_LPAREN2, - [42760] = 2, + [42708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3551), 1, anon_sym_LPAREN2, - [42767] = 2, + [42715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 1, - aux_sym_preproc_if_token2, - [42774] = 2, + ACTIONS(3553), 1, + anon_sym_SEMI, + [42722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3555), 1, anon_sym_LPAREN2, - [42781] = 2, + [42729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 1, + ACTIONS(3557), 1, sym_identifier, - [42788] = 2, + [42736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3559), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(386)] = 0, - [SMALL_STATE(387)] = 71, - [SMALL_STATE(388)] = 142, - [SMALL_STATE(389)] = 249, - [SMALL_STATE(390)] = 321, - [SMALL_STATE(391)] = 440, - [SMALL_STATE(392)] = 548, - [SMALL_STATE(393)] = 656, - [SMALL_STATE(394)] = 764, - [SMALL_STATE(395)] = 872, - [SMALL_STATE(396)] = 980, - [SMALL_STATE(397)] = 1088, - [SMALL_STATE(398)] = 1196, - [SMALL_STATE(399)] = 1304, - [SMALL_STATE(400)] = 1412, - [SMALL_STATE(401)] = 1520, - [SMALL_STATE(402)] = 1628, - [SMALL_STATE(403)] = 1736, - [SMALL_STATE(404)] = 1844, - [SMALL_STATE(405)] = 1952, - [SMALL_STATE(406)] = 2027, - [SMALL_STATE(407)] = 2104, - [SMALL_STATE(408)] = 2179, - [SMALL_STATE(409)] = 2254, - [SMALL_STATE(410)] = 2329, - [SMALL_STATE(411)] = 2406, - [SMALL_STATE(412)] = 2483, - [SMALL_STATE(413)] = 2560, - [SMALL_STATE(414)] = 2660, - [SMALL_STATE(415)] = 2732, - [SMALL_STATE(416)] = 2832, - [SMALL_STATE(417)] = 2929, - [SMALL_STATE(418)] = 3026, - [SMALL_STATE(419)] = 3124, - [SMALL_STATE(420)] = 3222, - [SMALL_STATE(421)] = 3320, - [SMALL_STATE(422)] = 3414, - [SMALL_STATE(423)] = 3512, - [SMALL_STATE(424)] = 3610, - [SMALL_STATE(425)] = 3708, - [SMALL_STATE(426)] = 3799, - [SMALL_STATE(427)] = 3902, - [SMALL_STATE(428)] = 3993, - [SMALL_STATE(429)] = 4084, - [SMALL_STATE(430)] = 4175, - [SMALL_STATE(431)] = 4266, - [SMALL_STATE(432)] = 4327, - [SMALL_STATE(433)] = 4418, - [SMALL_STATE(434)] = 4509, - [SMALL_STATE(435)] = 4600, - [SMALL_STATE(436)] = 4661, - [SMALL_STATE(437)] = 4722, - [SMALL_STATE(438)] = 4813, - [SMALL_STATE(439)] = 4904, - [SMALL_STATE(440)] = 4959, - [SMALL_STATE(441)] = 5050, - [SMALL_STATE(442)] = 5141, - [SMALL_STATE(443)] = 5232, - [SMALL_STATE(444)] = 5287, - [SMALL_STATE(445)] = 5378, - [SMALL_STATE(446)] = 5460, - [SMALL_STATE(447)] = 5542, - [SMALL_STATE(448)] = 5624, - [SMALL_STATE(449)] = 5706, - [SMALL_STATE(450)] = 5788, - [SMALL_STATE(451)] = 5870, - [SMALL_STATE(452)] = 5952, - [SMALL_STATE(453)] = 6034, - [SMALL_STATE(454)] = 6116, - [SMALL_STATE(455)] = 6198, - [SMALL_STATE(456)] = 6280, - [SMALL_STATE(457)] = 6362, - [SMALL_STATE(458)] = 6444, - [SMALL_STATE(459)] = 6526, - [SMALL_STATE(460)] = 6608, - [SMALL_STATE(461)] = 6690, - [SMALL_STATE(462)] = 6772, - [SMALL_STATE(463)] = 6854, - [SMALL_STATE(464)] = 6936, - [SMALL_STATE(465)] = 7018, - [SMALL_STATE(466)] = 7100, - [SMALL_STATE(467)] = 7182, - [SMALL_STATE(468)] = 7264, - [SMALL_STATE(469)] = 7346, - [SMALL_STATE(470)] = 7428, - [SMALL_STATE(471)] = 7510, - [SMALL_STATE(472)] = 7592, - [SMALL_STATE(473)] = 7674, - [SMALL_STATE(474)] = 7756, - [SMALL_STATE(475)] = 7838, - [SMALL_STATE(476)] = 7920, - [SMALL_STATE(477)] = 8002, - [SMALL_STATE(478)] = 8084, - [SMALL_STATE(479)] = 8166, - [SMALL_STATE(480)] = 8245, - [SMALL_STATE(481)] = 8324, - [SMALL_STATE(482)] = 8403, - [SMALL_STATE(483)] = 8482, - [SMALL_STATE(484)] = 8561, - [SMALL_STATE(485)] = 8640, - [SMALL_STATE(486)] = 8719, - [SMALL_STATE(487)] = 8798, - [SMALL_STATE(488)] = 8877, - [SMALL_STATE(489)] = 8956, - [SMALL_STATE(490)] = 9035, - [SMALL_STATE(491)] = 9114, - [SMALL_STATE(492)] = 9193, - [SMALL_STATE(493)] = 9272, - [SMALL_STATE(494)] = 9351, - [SMALL_STATE(495)] = 9402, - [SMALL_STATE(496)] = 9481, - [SMALL_STATE(497)] = 9560, - [SMALL_STATE(498)] = 9639, - [SMALL_STATE(499)] = 9718, - [SMALL_STATE(500)] = 9797, - [SMALL_STATE(501)] = 9876, - [SMALL_STATE(502)] = 9955, - [SMALL_STATE(503)] = 10034, - [SMALL_STATE(504)] = 10113, - [SMALL_STATE(505)] = 10192, - [SMALL_STATE(506)] = 10271, - [SMALL_STATE(507)] = 10350, - [SMALL_STATE(508)] = 10426, - [SMALL_STATE(509)] = 10502, - [SMALL_STATE(510)] = 10578, - [SMALL_STATE(511)] = 10654, - [SMALL_STATE(512)] = 10730, - [SMALL_STATE(513)] = 10806, - [SMALL_STATE(514)] = 10882, - [SMALL_STATE(515)] = 10958, - [SMALL_STATE(516)] = 11034, - [SMALL_STATE(517)] = 11084, - [SMALL_STATE(518)] = 11160, - [SMALL_STATE(519)] = 11236, - [SMALL_STATE(520)] = 11312, - [SMALL_STATE(521)] = 11388, - [SMALL_STATE(522)] = 11438, - [SMALL_STATE(523)] = 11514, - [SMALL_STATE(524)] = 11590, - [SMALL_STATE(525)] = 11666, - [SMALL_STATE(526)] = 11742, - [SMALL_STATE(527)] = 11818, - [SMALL_STATE(528)] = 11894, - [SMALL_STATE(529)] = 11970, - [SMALL_STATE(530)] = 12046, - [SMALL_STATE(531)] = 12122, - [SMALL_STATE(532)] = 12172, - [SMALL_STATE(533)] = 12232, - [SMALL_STATE(534)] = 12308, - [SMALL_STATE(535)] = 12392, - [SMALL_STATE(536)] = 12468, - [SMALL_STATE(537)] = 12544, - [SMALL_STATE(538)] = 12594, - [SMALL_STATE(539)] = 12654, - [SMALL_STATE(540)] = 12704, - [SMALL_STATE(541)] = 12780, - [SMALL_STATE(542)] = 12856, - [SMALL_STATE(543)] = 12932, - [SMALL_STATE(544)] = 13008, - [SMALL_STATE(545)] = 13084, - [SMALL_STATE(546)] = 13160, - [SMALL_STATE(547)] = 13236, - [SMALL_STATE(548)] = 13312, - [SMALL_STATE(549)] = 13388, - [SMALL_STATE(550)] = 13438, - [SMALL_STATE(551)] = 13498, - [SMALL_STATE(552)] = 13556, - [SMALL_STATE(553)] = 13632, - [SMALL_STATE(554)] = 13708, - [SMALL_STATE(555)] = 13784, - [SMALL_STATE(556)] = 13860, - [SMALL_STATE(557)] = 13936, - [SMALL_STATE(558)] = 14012, - [SMALL_STATE(559)] = 14088, - [SMALL_STATE(560)] = 14150, - [SMALL_STATE(561)] = 14226, - [SMALL_STATE(562)] = 14302, - [SMALL_STATE(563)] = 14378, - [SMALL_STATE(564)] = 14444, - [SMALL_STATE(565)] = 14520, - [SMALL_STATE(566)] = 14570, - [SMALL_STATE(567)] = 14646, - [SMALL_STATE(568)] = 14696, - [SMALL_STATE(569)] = 14772, - [SMALL_STATE(570)] = 14848, - [SMALL_STATE(571)] = 14924, - [SMALL_STATE(572)] = 15000, - [SMALL_STATE(573)] = 15076, - [SMALL_STATE(574)] = 15152, - [SMALL_STATE(575)] = 15228, - [SMALL_STATE(576)] = 15292, - [SMALL_STATE(577)] = 15358, - [SMALL_STATE(578)] = 15434, - [SMALL_STATE(579)] = 15510, - [SMALL_STATE(580)] = 15580, - [SMALL_STATE(581)] = 15656, - [SMALL_STATE(582)] = 15728, - [SMALL_STATE(583)] = 15804, - [SMALL_STATE(584)] = 15880, - [SMALL_STATE(585)] = 15930, - [SMALL_STATE(586)] = 16004, - [SMALL_STATE(587)] = 16080, - [SMALL_STATE(588)] = 16156, - [SMALL_STATE(589)] = 16234, - [SMALL_STATE(590)] = 16314, - [SMALL_STATE(591)] = 16390, - [SMALL_STATE(592)] = 16440, - [SMALL_STATE(593)] = 16502, - [SMALL_STATE(594)] = 16578, - [SMALL_STATE(595)] = 16654, - [SMALL_STATE(596)] = 16730, - [SMALL_STATE(597)] = 16780, - [SMALL_STATE(598)] = 16856, - [SMALL_STATE(599)] = 16932, - [SMALL_STATE(600)] = 17008, - [SMALL_STATE(601)] = 17058, - [SMALL_STATE(602)] = 17134, - [SMALL_STATE(603)] = 17216, - [SMALL_STATE(604)] = 17292, - [SMALL_STATE(605)] = 17368, - [SMALL_STATE(606)] = 17418, - [SMALL_STATE(607)] = 17494, - [SMALL_STATE(608)] = 17554, - [SMALL_STATE(609)] = 17604, - [SMALL_STATE(610)] = 17654, - [SMALL_STATE(611)] = 17730, - [SMALL_STATE(612)] = 17806, - [SMALL_STATE(613)] = 17882, - [SMALL_STATE(614)] = 17935, - [SMALL_STATE(615)] = 17988, - [SMALL_STATE(616)] = 18070, - [SMALL_STATE(617)] = 18123, - [SMALL_STATE(618)] = 18170, - [SMALL_STATE(619)] = 18223, - [SMALL_STATE(620)] = 18276, - [SMALL_STATE(621)] = 18355, - [SMALL_STATE(622)] = 18408, - [SMALL_STATE(623)] = 18455, - [SMALL_STATE(624)] = 18521, - [SMALL_STATE(625)] = 18599, - [SMALL_STATE(626)] = 18645, - [SMALL_STATE(627)] = 18713, - [SMALL_STATE(628)] = 18783, - [SMALL_STATE(629)] = 18855, - [SMALL_STATE(630)] = 18929, - [SMALL_STATE(631)] = 18989, - [SMALL_STATE(632)] = 19065, - [SMALL_STATE(633)] = 19121, - [SMALL_STATE(634)] = 19201, - [SMALL_STATE(635)] = 19257, - [SMALL_STATE(636)] = 19315, - [SMALL_STATE(637)] = 19371, - [SMALL_STATE(638)] = 19433, - [SMALL_STATE(639)] = 19495, - [SMALL_STATE(640)] = 19549, - [SMALL_STATE(641)] = 19605, - [SMALL_STATE(642)] = 19650, - [SMALL_STATE(643)] = 19695, - [SMALL_STATE(644)] = 19744, - [SMALL_STATE(645)] = 19789, - [SMALL_STATE(646)] = 19861, - [SMALL_STATE(647)] = 19917, - [SMALL_STATE(648)] = 19989, - [SMALL_STATE(649)] = 20061, - [SMALL_STATE(650)] = 20133, - [SMALL_STATE(651)] = 20202, - [SMALL_STATE(652)] = 20276, - [SMALL_STATE(653)] = 20320, - [SMALL_STATE(654)] = 20377, - [SMALL_STATE(655)] = 20448, - [SMALL_STATE(656)] = 20503, - [SMALL_STATE(657)] = 20560, - [SMALL_STATE(658)] = 20621, - [SMALL_STATE(659)] = 20684, - [SMALL_STATE(660)] = 20749, - [SMALL_STATE(661)] = 20816, - [SMALL_STATE(662)] = 20883, - [SMALL_STATE(663)] = 20952, - [SMALL_STATE(664)] = 21005, - [SMALL_STATE(665)] = 21078, - [SMALL_STATE(666)] = 21117, - [SMALL_STATE(667)] = 21155, - [SMALL_STATE(668)] = 21193, - [SMALL_STATE(669)] = 21230, - [SMALL_STATE(670)] = 21267, - [SMALL_STATE(671)] = 21304, - [SMALL_STATE(672)] = 21341, - [SMALL_STATE(673)] = 21378, - [SMALL_STATE(674)] = 21415, - [SMALL_STATE(675)] = 21452, - [SMALL_STATE(676)] = 21489, - [SMALL_STATE(677)] = 21526, - [SMALL_STATE(678)] = 21563, - [SMALL_STATE(679)] = 21600, - [SMALL_STATE(680)] = 21637, - [SMALL_STATE(681)] = 21674, - [SMALL_STATE(682)] = 21711, - [SMALL_STATE(683)] = 21748, - [SMALL_STATE(684)] = 21785, - [SMALL_STATE(685)] = 21822, - [SMALL_STATE(686)] = 21859, - [SMALL_STATE(687)] = 21896, - [SMALL_STATE(688)] = 21933, - [SMALL_STATE(689)] = 22008, - [SMALL_STATE(690)] = 22083, - [SMALL_STATE(691)] = 22120, - [SMALL_STATE(692)] = 22157, - [SMALL_STATE(693)] = 22194, - [SMALL_STATE(694)] = 22231, - [SMALL_STATE(695)] = 22306, - [SMALL_STATE(696)] = 22379, - [SMALL_STATE(697)] = 22427, - [SMALL_STATE(698)] = 22497, - [SMALL_STATE(699)] = 22569, - [SMALL_STATE(700)] = 22639, - [SMALL_STATE(701)] = 22711, - [SMALL_STATE(702)] = 22783, - [SMALL_STATE(703)] = 22855, - [SMALL_STATE(704)] = 22927, - [SMALL_STATE(705)] = 22999, - [SMALL_STATE(706)] = 23069, - [SMALL_STATE(707)] = 23139, - [SMALL_STATE(708)] = 23211, - [SMALL_STATE(709)] = 23283, - [SMALL_STATE(710)] = 23355, - [SMALL_STATE(711)] = 23427, - [SMALL_STATE(712)] = 23499, - [SMALL_STATE(713)] = 23535, - [SMALL_STATE(714)] = 23607, - [SMALL_STATE(715)] = 23679, - [SMALL_STATE(716)] = 23751, - [SMALL_STATE(717)] = 23799, - [SMALL_STATE(718)] = 23871, - [SMALL_STATE(719)] = 23943, - [SMALL_STATE(720)] = 24015, - [SMALL_STATE(721)] = 24087, - [SMALL_STATE(722)] = 24159, - [SMALL_STATE(723)] = 24231, - [SMALL_STATE(724)] = 24279, - [SMALL_STATE(725)] = 24351, - [SMALL_STATE(726)] = 24421, - [SMALL_STATE(727)] = 24493, - [SMALL_STATE(728)] = 24565, - [SMALL_STATE(729)] = 24637, - [SMALL_STATE(730)] = 24673, - [SMALL_STATE(731)] = 24745, - [SMALL_STATE(732)] = 24817, - [SMALL_STATE(733)] = 24865, - [SMALL_STATE(734)] = 24937, - [SMALL_STATE(735)] = 25009, - [SMALL_STATE(736)] = 25081, - [SMALL_STATE(737)] = 25153, - [SMALL_STATE(738)] = 25225, - [SMALL_STATE(739)] = 25297, - [SMALL_STATE(740)] = 25369, - [SMALL_STATE(741)] = 25441, - [SMALL_STATE(742)] = 25513, - [SMALL_STATE(743)] = 25585, - [SMALL_STATE(744)] = 25657, - [SMALL_STATE(745)] = 25729, - [SMALL_STATE(746)] = 25798, - [SMALL_STATE(747)] = 25867, - [SMALL_STATE(748)] = 25936, - [SMALL_STATE(749)] = 25971, - [SMALL_STATE(750)] = 26040, - [SMALL_STATE(751)] = 26075, - [SMALL_STATE(752)] = 26110, - [SMALL_STATE(753)] = 26179, - [SMALL_STATE(754)] = 26214, - [SMALL_STATE(755)] = 26283, - [SMALL_STATE(756)] = 26352, - [SMALL_STATE(757)] = 26387, - [SMALL_STATE(758)] = 26456, - [SMALL_STATE(759)] = 26491, - [SMALL_STATE(760)] = 26560, - [SMALL_STATE(761)] = 26629, - [SMALL_STATE(762)] = 26696, - [SMALL_STATE(763)] = 26765, - [SMALL_STATE(764)] = 26834, - [SMALL_STATE(765)] = 26873, - [SMALL_STATE(766)] = 26942, - [SMALL_STATE(767)] = 26977, - [SMALL_STATE(768)] = 27012, - [SMALL_STATE(769)] = 27081, - [SMALL_STATE(770)] = 27116, - [SMALL_STATE(771)] = 27151, - [SMALL_STATE(772)] = 27220, - [SMALL_STATE(773)] = 27255, - [SMALL_STATE(774)] = 27290, - [SMALL_STATE(775)] = 27329, - [SMALL_STATE(776)] = 27372, - [SMALL_STATE(777)] = 27441, - [SMALL_STATE(778)] = 27494, - [SMALL_STATE(779)] = 27563, - [SMALL_STATE(780)] = 27598, - [SMALL_STATE(781)] = 27633, - [SMALL_STATE(782)] = 27668, - [SMALL_STATE(783)] = 27703, - [SMALL_STATE(784)] = 27738, - [SMALL_STATE(785)] = 27773, - [SMALL_STATE(786)] = 27842, - [SMALL_STATE(787)] = 27877, - [SMALL_STATE(788)] = 27912, - [SMALL_STATE(789)] = 27981, - [SMALL_STATE(790)] = 28050, - [SMALL_STATE(791)] = 28119, - [SMALL_STATE(792)] = 28188, - [SMALL_STATE(793)] = 28223, - [SMALL_STATE(794)] = 28292, - [SMALL_STATE(795)] = 28361, - [SMALL_STATE(796)] = 28410, - [SMALL_STATE(797)] = 28445, - [SMALL_STATE(798)] = 28480, - [SMALL_STATE(799)] = 28515, - [SMALL_STATE(800)] = 28550, - [SMALL_STATE(801)] = 28585, - [SMALL_STATE(802)] = 28624, - [SMALL_STATE(803)] = 28693, - [SMALL_STATE(804)] = 28762, - [SMALL_STATE(805)] = 28831, - [SMALL_STATE(806)] = 28896, - [SMALL_STATE(807)] = 28965, - [SMALL_STATE(808)] = 29034, - [SMALL_STATE(809)] = 29097, - [SMALL_STATE(810)] = 29160, - [SMALL_STATE(811)] = 29221, - [SMALL_STATE(812)] = 29256, - [SMALL_STATE(813)] = 29315, - [SMALL_STATE(814)] = 29384, - [SMALL_STATE(815)] = 29419, - [SMALL_STATE(816)] = 29454, - [SMALL_STATE(817)] = 29511, - [SMALL_STATE(818)] = 29546, - [SMALL_STATE(819)] = 29581, - [SMALL_STATE(820)] = 29616, - [SMALL_STATE(821)] = 29651, - [SMALL_STATE(822)] = 29720, - [SMALL_STATE(823)] = 29773, - [SMALL_STATE(824)] = 29824, - [SMALL_STATE(825)] = 29859, - [SMALL_STATE(826)] = 29928, - [SMALL_STATE(827)] = 29963, - [SMALL_STATE(828)] = 30032, - [SMALL_STATE(829)] = 30067, - [SMALL_STATE(830)] = 30102, - [SMALL_STATE(831)] = 30141, - [SMALL_STATE(832)] = 30210, - [SMALL_STATE(833)] = 30245, - [SMALL_STATE(834)] = 30284, - [SMALL_STATE(835)] = 30319, - [SMALL_STATE(836)] = 30354, - [SMALL_STATE(837)] = 30412, - [SMALL_STATE(838)] = 30467, - [SMALL_STATE(839)] = 30522, - [SMALL_STATE(840)] = 30577, - [SMALL_STATE(841)] = 30632, - [SMALL_STATE(842)] = 30687, - [SMALL_STATE(843)] = 30742, - [SMALL_STATE(844)] = 30797, - [SMALL_STATE(845)] = 30852, - [SMALL_STATE(846)] = 30907, - [SMALL_STATE(847)] = 30962, - [SMALL_STATE(848)] = 31017, - [SMALL_STATE(849)] = 31072, - [SMALL_STATE(850)] = 31118, - [SMALL_STATE(851)] = 31164, - [SMALL_STATE(852)] = 31210, - [SMALL_STATE(853)] = 31256, - [SMALL_STATE(854)] = 31291, - [SMALL_STATE(855)] = 31326, - [SMALL_STATE(856)] = 31377, - [SMALL_STATE(857)] = 31412, - [SMALL_STATE(858)] = 31447, - [SMALL_STATE(859)] = 31482, - [SMALL_STATE(860)] = 31530, - [SMALL_STATE(861)] = 31578, - [SMALL_STATE(862)] = 31626, - [SMALL_STATE(863)] = 31674, - [SMALL_STATE(864)] = 31722, - [SMALL_STATE(865)] = 31770, - [SMALL_STATE(866)] = 31818, - [SMALL_STATE(867)] = 31866, - [SMALL_STATE(868)] = 31900, - [SMALL_STATE(869)] = 31948, - [SMALL_STATE(870)] = 31977, - [SMALL_STATE(871)] = 32006, - [SMALL_STATE(872)] = 32035, - [SMALL_STATE(873)] = 32064, - [SMALL_STATE(874)] = 32093, - [SMALL_STATE(875)] = 32122, - [SMALL_STATE(876)] = 32155, - [SMALL_STATE(877)] = 32186, - [SMALL_STATE(878)] = 32215, - [SMALL_STATE(879)] = 32244, - [SMALL_STATE(880)] = 32273, - [SMALL_STATE(881)] = 32302, - [SMALL_STATE(882)] = 32331, - [SMALL_STATE(883)] = 32386, - [SMALL_STATE(884)] = 32415, - [SMALL_STATE(885)] = 32444, - [SMALL_STATE(886)] = 32473, - [SMALL_STATE(887)] = 32506, - [SMALL_STATE(888)] = 32535, - [SMALL_STATE(889)] = 32564, - [SMALL_STATE(890)] = 32607, - [SMALL_STATE(891)] = 32662, - [SMALL_STATE(892)] = 32691, - [SMALL_STATE(893)] = 32720, - [SMALL_STATE(894)] = 32749, - [SMALL_STATE(895)] = 32792, - [SMALL_STATE(896)] = 32821, - [SMALL_STATE(897)] = 32850, - [SMALL_STATE(898)] = 32878, - [SMALL_STATE(899)] = 32918, - [SMALL_STATE(900)] = 32958, - [SMALL_STATE(901)] = 32998, - [SMALL_STATE(902)] = 33038, - [SMALL_STATE(903)] = 33078, - [SMALL_STATE(904)] = 33118, - [SMALL_STATE(905)] = 33158, - [SMALL_STATE(906)] = 33198, - [SMALL_STATE(907)] = 33248, - [SMALL_STATE(908)] = 33288, - [SMALL_STATE(909)] = 33328, - [SMALL_STATE(910)] = 33368, - [SMALL_STATE(911)] = 33408, - [SMALL_STATE(912)] = 33448, - [SMALL_STATE(913)] = 33488, - [SMALL_STATE(914)] = 33516, - [SMALL_STATE(915)] = 33556, - [SMALL_STATE(916)] = 33584, - [SMALL_STATE(917)] = 33612, - [SMALL_STATE(918)] = 33652, - [SMALL_STATE(919)] = 33680, - [SMALL_STATE(920)] = 33720, - [SMALL_STATE(921)] = 33760, - [SMALL_STATE(922)] = 33800, - [SMALL_STATE(923)] = 33840, - [SMALL_STATE(924)] = 33880, - [SMALL_STATE(925)] = 33920, - [SMALL_STATE(926)] = 33960, - [SMALL_STATE(927)] = 34000, - [SMALL_STATE(928)] = 34040, - [SMALL_STATE(929)] = 34080, - [SMALL_STATE(930)] = 34120, - [SMALL_STATE(931)] = 34160, - [SMALL_STATE(932)] = 34200, - [SMALL_STATE(933)] = 34228, - [SMALL_STATE(934)] = 34256, - [SMALL_STATE(935)] = 34296, - [SMALL_STATE(936)] = 34344, - [SMALL_STATE(937)] = 34384, - [SMALL_STATE(938)] = 34424, - [SMALL_STATE(939)] = 34456, - [SMALL_STATE(940)] = 34484, - [SMALL_STATE(941)] = 34524, - [SMALL_STATE(942)] = 34564, - [SMALL_STATE(943)] = 34592, - [SMALL_STATE(944)] = 34640, - [SMALL_STATE(945)] = 34686, - [SMALL_STATE(946)] = 34732, - [SMALL_STATE(947)] = 34776, - [SMALL_STATE(948)] = 34818, - [SMALL_STATE(949)] = 34846, - [SMALL_STATE(950)] = 34882, - [SMALL_STATE(951)] = 34922, - [SMALL_STATE(952)] = 34956, - [SMALL_STATE(953)] = 34983, - [SMALL_STATE(954)] = 35010, - [SMALL_STATE(955)] = 35043, - [SMALL_STATE(956)] = 35088, - [SMALL_STATE(957)] = 35137, - [SMALL_STATE(958)] = 35164, - [SMALL_STATE(959)] = 35209, - [SMALL_STATE(960)] = 35254, - [SMALL_STATE(961)] = 35281, - [SMALL_STATE(962)] = 35316, - [SMALL_STATE(963)] = 35343, - [SMALL_STATE(964)] = 35380, - [SMALL_STATE(965)] = 35413, - [SMALL_STATE(966)] = 35452, - [SMALL_STATE(967)] = 35493, - [SMALL_STATE(968)] = 35538, - [SMALL_STATE(969)] = 35583, - [SMALL_STATE(970)] = 35628, - [SMALL_STATE(971)] = 35673, - [SMALL_STATE(972)] = 35716, - [SMALL_STATE(973)] = 35761, - [SMALL_STATE(974)] = 35788, - [SMALL_STATE(975)] = 35817, - [SMALL_STATE(976)] = 35844, - [SMALL_STATE(977)] = 35871, - [SMALL_STATE(978)] = 35916, - [SMALL_STATE(979)] = 35947, - [SMALL_STATE(980)] = 35974, - [SMALL_STATE(981)] = 36001, - [SMALL_STATE(982)] = 36046, - [SMALL_STATE(983)] = 36095, - [SMALL_STATE(984)] = 36134, - [SMALL_STATE(985)] = 36173, - [SMALL_STATE(986)] = 36212, - [SMALL_STATE(987)] = 36251, - [SMALL_STATE(988)] = 36290, - [SMALL_STATE(989)] = 36329, - [SMALL_STATE(990)] = 36368, - [SMALL_STATE(991)] = 36407, - [SMALL_STATE(992)] = 36446, - [SMALL_STATE(993)] = 36484, - [SMALL_STATE(994)] = 36522, - [SMALL_STATE(995)] = 36560, - [SMALL_STATE(996)] = 36598, - [SMALL_STATE(997)] = 36630, - [SMALL_STATE(998)] = 36668, - [SMALL_STATE(999)] = 36706, - [SMALL_STATE(1000)] = 36737, - [SMALL_STATE(1001)] = 36775, - [SMALL_STATE(1002)] = 36813, - [SMALL_STATE(1003)] = 36851, - [SMALL_STATE(1004)] = 36872, - [SMALL_STATE(1005)] = 36893, - [SMALL_STATE(1006)] = 36925, - [SMALL_STATE(1007)] = 36963, - [SMALL_STATE(1008)] = 37001, - [SMALL_STATE(1009)] = 37033, - [SMALL_STATE(1010)] = 37065, - [SMALL_STATE(1011)] = 37097, - [SMALL_STATE(1012)] = 37129, - [SMALL_STATE(1013)] = 37161, - [SMALL_STATE(1014)] = 37193, - [SMALL_STATE(1015)] = 37231, - [SMALL_STATE(1016)] = 37263, - [SMALL_STATE(1017)] = 37301, - [SMALL_STATE(1018)] = 37333, - [SMALL_STATE(1019)] = 37368, - [SMALL_STATE(1020)] = 37397, - [SMALL_STATE(1021)] = 37426, - [SMALL_STATE(1022)] = 37461, - [SMALL_STATE(1023)] = 37490, - [SMALL_STATE(1024)] = 37519, - [SMALL_STATE(1025)] = 37548, - [SMALL_STATE(1026)] = 37577, - [SMALL_STATE(1027)] = 37604, - [SMALL_STATE(1028)] = 37627, - [SMALL_STATE(1029)] = 37656, - [SMALL_STATE(1030)] = 37685, - [SMALL_STATE(1031)] = 37714, - [SMALL_STATE(1032)] = 37749, - [SMALL_STATE(1033)] = 37778, - [SMALL_STATE(1034)] = 37807, - [SMALL_STATE(1035)] = 37834, - [SMALL_STATE(1036)] = 37861, - [SMALL_STATE(1037)] = 37890, - [SMALL_STATE(1038)] = 37917, - [SMALL_STATE(1039)] = 37940, - [SMALL_STATE(1040)] = 37969, - [SMALL_STATE(1041)] = 37998, - [SMALL_STATE(1042)] = 38027, - [SMALL_STATE(1043)] = 38050, - [SMALL_STATE(1044)] = 38079, - [SMALL_STATE(1045)] = 38102, - [SMALL_STATE(1046)] = 38131, - [SMALL_STATE(1047)] = 38163, - [SMALL_STATE(1048)] = 38181, - [SMALL_STATE(1049)] = 38203, - [SMALL_STATE(1050)] = 38229, - [SMALL_STATE(1051)] = 38261, - [SMALL_STATE(1052)] = 38287, - [SMALL_STATE(1053)] = 38313, - [SMALL_STATE(1054)] = 38339, - [SMALL_STATE(1055)] = 38371, - [SMALL_STATE(1056)] = 38389, - [SMALL_STATE(1057)] = 38407, - [SMALL_STATE(1058)] = 38439, - [SMALL_STATE(1059)] = 38468, - [SMALL_STATE(1060)] = 38497, - [SMALL_STATE(1061)] = 38518, - [SMALL_STATE(1062)] = 38547, - [SMALL_STATE(1063)] = 38572, - [SMALL_STATE(1064)] = 38601, - [SMALL_STATE(1065)] = 38622, - [SMALL_STATE(1066)] = 38651, - [SMALL_STATE(1067)] = 38676, - [SMALL_STATE(1068)] = 38705, - [SMALL_STATE(1069)] = 38726, - [SMALL_STATE(1070)] = 38751, - [SMALL_STATE(1071)] = 38780, - [SMALL_STATE(1072)] = 38807, - [SMALL_STATE(1073)] = 38828, - [SMALL_STATE(1074)] = 38853, - [SMALL_STATE(1075)] = 38878, - [SMALL_STATE(1076)] = 38899, - [SMALL_STATE(1077)] = 38928, - [SMALL_STATE(1078)] = 38944, - [SMALL_STATE(1079)] = 38964, - [SMALL_STATE(1080)] = 38980, - [SMALL_STATE(1081)] = 38996, - [SMALL_STATE(1082)] = 39012, - [SMALL_STATE(1083)] = 39038, - [SMALL_STATE(1084)] = 39054, - [SMALL_STATE(1085)] = 39080, - [SMALL_STATE(1086)] = 39106, - [SMALL_STATE(1087)] = 39130, - [SMALL_STATE(1088)] = 39154, - [SMALL_STATE(1089)] = 39180, - [SMALL_STATE(1090)] = 39196, - [SMALL_STATE(1091)] = 39211, - [SMALL_STATE(1092)] = 39234, - [SMALL_STATE(1093)] = 39257, - [SMALL_STATE(1094)] = 39272, - [SMALL_STATE(1095)] = 39287, - [SMALL_STATE(1096)] = 39302, - [SMALL_STATE(1097)] = 39317, - [SMALL_STATE(1098)] = 39332, - [SMALL_STATE(1099)] = 39355, - [SMALL_STATE(1100)] = 39370, - [SMALL_STATE(1101)] = 39385, - [SMALL_STATE(1102)] = 39399, - [SMALL_STATE(1103)] = 39413, - [SMALL_STATE(1104)] = 39427, - [SMALL_STATE(1105)] = 39441, - [SMALL_STATE(1106)] = 39459, - [SMALL_STATE(1107)] = 39477, - [SMALL_STATE(1108)] = 39491, - [SMALL_STATE(1109)] = 39505, - [SMALL_STATE(1110)] = 39519, - [SMALL_STATE(1111)] = 39533, - [SMALL_STATE(1112)] = 39550, - [SMALL_STATE(1113)] = 39569, - [SMALL_STATE(1114)] = 39588, - [SMALL_STATE(1115)] = 39607, - [SMALL_STATE(1116)] = 39624, - [SMALL_STATE(1117)] = 39643, - [SMALL_STATE(1118)] = 39660, - [SMALL_STATE(1119)] = 39679, - [SMALL_STATE(1120)] = 39696, - [SMALL_STATE(1121)] = 39712, - [SMALL_STATE(1122)] = 39728, - [SMALL_STATE(1123)] = 39738, - [SMALL_STATE(1124)] = 39748, - [SMALL_STATE(1125)] = 39764, - [SMALL_STATE(1126)] = 39774, - [SMALL_STATE(1127)] = 39790, - [SMALL_STATE(1128)] = 39806, - [SMALL_STATE(1129)] = 39822, - [SMALL_STATE(1130)] = 39836, - [SMALL_STATE(1131)] = 39852, - [SMALL_STATE(1132)] = 39866, - [SMALL_STATE(1133)] = 39882, - [SMALL_STATE(1134)] = 39898, + [SMALL_STATE(382)] = 0, + [SMALL_STATE(383)] = 107, + [SMALL_STATE(384)] = 178, + [SMALL_STATE(385)] = 249, + [SMALL_STATE(386)] = 321, + [SMALL_STATE(387)] = 440, + [SMALL_STATE(388)] = 548, + [SMALL_STATE(389)] = 656, + [SMALL_STATE(390)] = 764, + [SMALL_STATE(391)] = 872, + [SMALL_STATE(392)] = 980, + [SMALL_STATE(393)] = 1088, + [SMALL_STATE(394)] = 1196, + [SMALL_STATE(395)] = 1304, + [SMALL_STATE(396)] = 1412, + [SMALL_STATE(397)] = 1520, + [SMALL_STATE(398)] = 1628, + [SMALL_STATE(399)] = 1736, + [SMALL_STATE(400)] = 1844, + [SMALL_STATE(401)] = 1952, + [SMALL_STATE(402)] = 2029, + [SMALL_STATE(403)] = 2104, + [SMALL_STATE(404)] = 2181, + [SMALL_STATE(405)] = 2256, + [SMALL_STATE(406)] = 2333, + [SMALL_STATE(407)] = 2408, + [SMALL_STATE(408)] = 2485, + [SMALL_STATE(409)] = 2560, + [SMALL_STATE(410)] = 2660, + [SMALL_STATE(411)] = 2760, + [SMALL_STATE(412)] = 2832, + [SMALL_STATE(413)] = 2929, + [SMALL_STATE(414)] = 3026, + [SMALL_STATE(415)] = 3124, + [SMALL_STATE(416)] = 3218, + [SMALL_STATE(417)] = 3316, + [SMALL_STATE(418)] = 3414, + [SMALL_STATE(419)] = 3512, + [SMALL_STATE(420)] = 3610, + [SMALL_STATE(421)] = 3708, + [SMALL_STATE(422)] = 3799, + [SMALL_STATE(423)] = 3860, + [SMALL_STATE(424)] = 3951, + [SMALL_STATE(425)] = 4054, + [SMALL_STATE(426)] = 4145, + [SMALL_STATE(427)] = 4236, + [SMALL_STATE(428)] = 4327, + [SMALL_STATE(429)] = 4418, + [SMALL_STATE(430)] = 4509, + [SMALL_STATE(431)] = 4570, + [SMALL_STATE(432)] = 4661, + [SMALL_STATE(433)] = 4752, + [SMALL_STATE(434)] = 4843, + [SMALL_STATE(435)] = 4904, + [SMALL_STATE(436)] = 4995, + [SMALL_STATE(437)] = 5086, + [SMALL_STATE(438)] = 5177, + [SMALL_STATE(439)] = 5268, + [SMALL_STATE(440)] = 5323, + [SMALL_STATE(441)] = 5378, + [SMALL_STATE(442)] = 5460, + [SMALL_STATE(443)] = 5542, + [SMALL_STATE(444)] = 5624, + [SMALL_STATE(445)] = 5706, + [SMALL_STATE(446)] = 5788, + [SMALL_STATE(447)] = 5870, + [SMALL_STATE(448)] = 5952, + [SMALL_STATE(449)] = 6034, + [SMALL_STATE(450)] = 6116, + [SMALL_STATE(451)] = 6198, + [SMALL_STATE(452)] = 6280, + [SMALL_STATE(453)] = 6362, + [SMALL_STATE(454)] = 6444, + [SMALL_STATE(455)] = 6526, + [SMALL_STATE(456)] = 6608, + [SMALL_STATE(457)] = 6690, + [SMALL_STATE(458)] = 6772, + [SMALL_STATE(459)] = 6854, + [SMALL_STATE(460)] = 6936, + [SMALL_STATE(461)] = 7018, + [SMALL_STATE(462)] = 7100, + [SMALL_STATE(463)] = 7182, + [SMALL_STATE(464)] = 7264, + [SMALL_STATE(465)] = 7346, + [SMALL_STATE(466)] = 7428, + [SMALL_STATE(467)] = 7510, + [SMALL_STATE(468)] = 7592, + [SMALL_STATE(469)] = 7674, + [SMALL_STATE(470)] = 7756, + [SMALL_STATE(471)] = 7838, + [SMALL_STATE(472)] = 7920, + [SMALL_STATE(473)] = 8002, + [SMALL_STATE(474)] = 8084, + [SMALL_STATE(475)] = 8166, + [SMALL_STATE(476)] = 8245, + [SMALL_STATE(477)] = 8324, + [SMALL_STATE(478)] = 8403, + [SMALL_STATE(479)] = 8482, + [SMALL_STATE(480)] = 8533, + [SMALL_STATE(481)] = 8612, + [SMALL_STATE(482)] = 8691, + [SMALL_STATE(483)] = 8770, + [SMALL_STATE(484)] = 8849, + [SMALL_STATE(485)] = 8928, + [SMALL_STATE(486)] = 9007, + [SMALL_STATE(487)] = 9086, + [SMALL_STATE(488)] = 9165, + [SMALL_STATE(489)] = 9244, + [SMALL_STATE(490)] = 9323, + [SMALL_STATE(491)] = 9402, + [SMALL_STATE(492)] = 9481, + [SMALL_STATE(493)] = 9560, + [SMALL_STATE(494)] = 9639, + [SMALL_STATE(495)] = 9718, + [SMALL_STATE(496)] = 9797, + [SMALL_STATE(497)] = 9876, + [SMALL_STATE(498)] = 9955, + [SMALL_STATE(499)] = 10034, + [SMALL_STATE(500)] = 10113, + [SMALL_STATE(501)] = 10192, + [SMALL_STATE(502)] = 10271, + [SMALL_STATE(503)] = 10350, + [SMALL_STATE(504)] = 10434, + [SMALL_STATE(505)] = 10510, + [SMALL_STATE(506)] = 10568, + [SMALL_STATE(507)] = 10644, + [SMALL_STATE(508)] = 10704, + [SMALL_STATE(509)] = 10780, + [SMALL_STATE(510)] = 10856, + [SMALL_STATE(511)] = 10932, + [SMALL_STATE(512)] = 11008, + [SMALL_STATE(513)] = 11084, + [SMALL_STATE(514)] = 11160, + [SMALL_STATE(515)] = 11236, + [SMALL_STATE(516)] = 11286, + [SMALL_STATE(517)] = 11362, + [SMALL_STATE(518)] = 11438, + [SMALL_STATE(519)] = 11514, + [SMALL_STATE(520)] = 11590, + [SMALL_STATE(521)] = 11666, + [SMALL_STATE(522)] = 11742, + [SMALL_STATE(523)] = 11818, + [SMALL_STATE(524)] = 11894, + [SMALL_STATE(525)] = 11970, + [SMALL_STATE(526)] = 12046, + [SMALL_STATE(527)] = 12122, + [SMALL_STATE(528)] = 12198, + [SMALL_STATE(529)] = 12274, + [SMALL_STATE(530)] = 12324, + [SMALL_STATE(531)] = 12400, + [SMALL_STATE(532)] = 12476, + [SMALL_STATE(533)] = 12526, + [SMALL_STATE(534)] = 12586, + [SMALL_STATE(535)] = 12662, + [SMALL_STATE(536)] = 12726, + [SMALL_STATE(537)] = 12802, + [SMALL_STATE(538)] = 12878, + [SMALL_STATE(539)] = 12954, + [SMALL_STATE(540)] = 13020, + [SMALL_STATE(541)] = 13096, + [SMALL_STATE(542)] = 13166, + [SMALL_STATE(543)] = 13242, + [SMALL_STATE(544)] = 13314, + [SMALL_STATE(545)] = 13388, + [SMALL_STATE(546)] = 13464, + [SMALL_STATE(547)] = 13540, + [SMALL_STATE(548)] = 13616, + [SMALL_STATE(549)] = 13694, + [SMALL_STATE(550)] = 13774, + [SMALL_STATE(551)] = 13850, + [SMALL_STATE(552)] = 13912, + [SMALL_STATE(553)] = 13988, + [SMALL_STATE(554)] = 14064, + [SMALL_STATE(555)] = 14140, + [SMALL_STATE(556)] = 14190, + [SMALL_STATE(557)] = 14240, + [SMALL_STATE(558)] = 14316, + [SMALL_STATE(559)] = 14378, + [SMALL_STATE(560)] = 14454, + [SMALL_STATE(561)] = 14536, + [SMALL_STATE(562)] = 14586, + [SMALL_STATE(563)] = 14636, + [SMALL_STATE(564)] = 14712, + [SMALL_STATE(565)] = 14788, + [SMALL_STATE(566)] = 14864, + [SMALL_STATE(567)] = 14914, + [SMALL_STATE(568)] = 14990, + [SMALL_STATE(569)] = 15066, + [SMALL_STATE(570)] = 15142, + [SMALL_STATE(571)] = 15218, + [SMALL_STATE(572)] = 15294, + [SMALL_STATE(573)] = 15370, + [SMALL_STATE(574)] = 15430, + [SMALL_STATE(575)] = 15506, + [SMALL_STATE(576)] = 15556, + [SMALL_STATE(577)] = 15632, + [SMALL_STATE(578)] = 15708, + [SMALL_STATE(579)] = 15768, + [SMALL_STATE(580)] = 15844, + [SMALL_STATE(581)] = 15920, + [SMALL_STATE(582)] = 15970, + [SMALL_STATE(583)] = 16046, + [SMALL_STATE(584)] = 16096, + [SMALL_STATE(585)] = 16172, + [SMALL_STATE(586)] = 16222, + [SMALL_STATE(587)] = 16298, + [SMALL_STATE(588)] = 16374, + [SMALL_STATE(589)] = 16450, + [SMALL_STATE(590)] = 16500, + [SMALL_STATE(591)] = 16576, + [SMALL_STATE(592)] = 16652, + [SMALL_STATE(593)] = 16718, + [SMALL_STATE(594)] = 16794, + [SMALL_STATE(595)] = 16870, + [SMALL_STATE(596)] = 16946, + [SMALL_STATE(597)] = 17022, + [SMALL_STATE(598)] = 17098, + [SMALL_STATE(599)] = 17148, + [SMALL_STATE(600)] = 17224, + [SMALL_STATE(601)] = 17274, + [SMALL_STATE(602)] = 17350, + [SMALL_STATE(603)] = 17426, + [SMALL_STATE(604)] = 17502, + [SMALL_STATE(605)] = 17578, + [SMALL_STATE(606)] = 17654, + [SMALL_STATE(607)] = 17730, + [SMALL_STATE(608)] = 17806, + [SMALL_STATE(609)] = 17882, + [SMALL_STATE(610)] = 17935, + [SMALL_STATE(611)] = 18017, + [SMALL_STATE(612)] = 18070, + [SMALL_STATE(613)] = 18123, + [SMALL_STATE(614)] = 18170, + [SMALL_STATE(615)] = 18217, + [SMALL_STATE(616)] = 18270, + [SMALL_STATE(617)] = 18317, + [SMALL_STATE(618)] = 18370, + [SMALL_STATE(619)] = 18449, + [SMALL_STATE(620)] = 18511, + [SMALL_STATE(621)] = 18567, + [SMALL_STATE(622)] = 18623, + [SMALL_STATE(623)] = 18677, + [SMALL_STATE(624)] = 18735, + [SMALL_STATE(625)] = 18791, + [SMALL_STATE(626)] = 18857, + [SMALL_STATE(627)] = 18933, + [SMALL_STATE(628)] = 18995, + [SMALL_STATE(629)] = 19055, + [SMALL_STATE(630)] = 19129, + [SMALL_STATE(631)] = 19207, + [SMALL_STATE(632)] = 19279, + [SMALL_STATE(633)] = 19335, + [SMALL_STATE(634)] = 19415, + [SMALL_STATE(635)] = 19485, + [SMALL_STATE(636)] = 19553, + [SMALL_STATE(637)] = 19598, + [SMALL_STATE(638)] = 19643, + [SMALL_STATE(639)] = 19692, + [SMALL_STATE(640)] = 19737, + [SMALL_STATE(641)] = 19809, + [SMALL_STATE(642)] = 19881, + [SMALL_STATE(643)] = 19953, + [SMALL_STATE(644)] = 20009, + [SMALL_STATE(645)] = 20081, + [SMALL_STATE(646)] = 20150, + [SMALL_STATE(647)] = 20224, + [SMALL_STATE(648)] = 20268, + [SMALL_STATE(649)] = 20321, + [SMALL_STATE(650)] = 20378, + [SMALL_STATE(651)] = 20451, + [SMALL_STATE(652)] = 20518, + [SMALL_STATE(653)] = 20583, + [SMALL_STATE(654)] = 20652, + [SMALL_STATE(655)] = 20715, + [SMALL_STATE(656)] = 20786, + [SMALL_STATE(657)] = 20847, + [SMALL_STATE(658)] = 20904, + [SMALL_STATE(659)] = 20971, + [SMALL_STATE(660)] = 21026, + [SMALL_STATE(661)] = 21065, + [SMALL_STATE(662)] = 21103, + [SMALL_STATE(663)] = 21141, + [SMALL_STATE(664)] = 21178, + [SMALL_STATE(665)] = 21215, + [SMALL_STATE(666)] = 21252, + [SMALL_STATE(667)] = 21289, + [SMALL_STATE(668)] = 21326, + [SMALL_STATE(669)] = 21363, + [SMALL_STATE(670)] = 21438, + [SMALL_STATE(671)] = 21475, + [SMALL_STATE(672)] = 21512, + [SMALL_STATE(673)] = 21549, + [SMALL_STATE(674)] = 21586, + [SMALL_STATE(675)] = 21623, + [SMALL_STATE(676)] = 21660, + [SMALL_STATE(677)] = 21697, + [SMALL_STATE(678)] = 21734, + [SMALL_STATE(679)] = 21771, + [SMALL_STATE(680)] = 21808, + [SMALL_STATE(681)] = 21845, + [SMALL_STATE(682)] = 21882, + [SMALL_STATE(683)] = 21919, + [SMALL_STATE(684)] = 21956, + [SMALL_STATE(685)] = 22031, + [SMALL_STATE(686)] = 22068, + [SMALL_STATE(687)] = 22141, + [SMALL_STATE(688)] = 22216, + [SMALL_STATE(689)] = 22253, + [SMALL_STATE(690)] = 22290, + [SMALL_STATE(691)] = 22327, + [SMALL_STATE(692)] = 22399, + [SMALL_STATE(693)] = 22471, + [SMALL_STATE(694)] = 22543, + [SMALL_STATE(695)] = 22615, + [SMALL_STATE(696)] = 22687, + [SMALL_STATE(697)] = 22757, + [SMALL_STATE(698)] = 22829, + [SMALL_STATE(699)] = 22899, + [SMALL_STATE(700)] = 22947, + [SMALL_STATE(701)] = 22995, + [SMALL_STATE(702)] = 23067, + [SMALL_STATE(703)] = 23115, + [SMALL_STATE(704)] = 23163, + [SMALL_STATE(705)] = 23199, + [SMALL_STATE(706)] = 23271, + [SMALL_STATE(707)] = 23343, + [SMALL_STATE(708)] = 23413, + [SMALL_STATE(709)] = 23449, + [SMALL_STATE(710)] = 23521, + [SMALL_STATE(711)] = 23593, + [SMALL_STATE(712)] = 23665, + [SMALL_STATE(713)] = 23737, + [SMALL_STATE(714)] = 23809, + [SMALL_STATE(715)] = 23879, + [SMALL_STATE(716)] = 23951, + [SMALL_STATE(717)] = 24023, + [SMALL_STATE(718)] = 24095, + [SMALL_STATE(719)] = 24165, + [SMALL_STATE(720)] = 24237, + [SMALL_STATE(721)] = 24309, + [SMALL_STATE(722)] = 24381, + [SMALL_STATE(723)] = 24453, + [SMALL_STATE(724)] = 24525, + [SMALL_STATE(725)] = 24597, + [SMALL_STATE(726)] = 24669, + [SMALL_STATE(727)] = 24741, + [SMALL_STATE(728)] = 24813, + [SMALL_STATE(729)] = 24885, + [SMALL_STATE(730)] = 24957, + [SMALL_STATE(731)] = 25029, + [SMALL_STATE(732)] = 25101, + [SMALL_STATE(733)] = 25173, + [SMALL_STATE(734)] = 25245, + [SMALL_STATE(735)] = 25317, + [SMALL_STATE(736)] = 25389, + [SMALL_STATE(737)] = 25461, + [SMALL_STATE(738)] = 25533, + [SMALL_STATE(739)] = 25605, + [SMALL_STATE(740)] = 25677, + [SMALL_STATE(741)] = 25712, + [SMALL_STATE(742)] = 25747, + [SMALL_STATE(743)] = 25782, + [SMALL_STATE(744)] = 25817, + [SMALL_STATE(745)] = 25856, + [SMALL_STATE(746)] = 25891, + [SMALL_STATE(747)] = 25960, + [SMALL_STATE(748)] = 26029, + [SMALL_STATE(749)] = 26064, + [SMALL_STATE(750)] = 26099, + [SMALL_STATE(751)] = 26134, + [SMALL_STATE(752)] = 26203, + [SMALL_STATE(753)] = 26272, + [SMALL_STATE(754)] = 26307, + [SMALL_STATE(755)] = 26376, + [SMALL_STATE(756)] = 26445, + [SMALL_STATE(757)] = 26496, + [SMALL_STATE(758)] = 26549, + [SMALL_STATE(759)] = 26606, + [SMALL_STATE(760)] = 26675, + [SMALL_STATE(761)] = 26734, + [SMALL_STATE(762)] = 26795, + [SMALL_STATE(763)] = 26858, + [SMALL_STATE(764)] = 26921, + [SMALL_STATE(765)] = 26990, + [SMALL_STATE(766)] = 27025, + [SMALL_STATE(767)] = 27090, + [SMALL_STATE(768)] = 27139, + [SMALL_STATE(769)] = 27174, + [SMALL_STATE(770)] = 27209, + [SMALL_STATE(771)] = 27278, + [SMALL_STATE(772)] = 27347, + [SMALL_STATE(773)] = 27416, + [SMALL_STATE(774)] = 27485, + [SMALL_STATE(775)] = 27554, + [SMALL_STATE(776)] = 27621, + [SMALL_STATE(777)] = 27656, + [SMALL_STATE(778)] = 27691, + [SMALL_STATE(779)] = 27726, + [SMALL_STATE(780)] = 27795, + [SMALL_STATE(781)] = 27830, + [SMALL_STATE(782)] = 27865, + [SMALL_STATE(783)] = 27900, + [SMALL_STATE(784)] = 27935, + [SMALL_STATE(785)] = 28004, + [SMALL_STATE(786)] = 28047, + [SMALL_STATE(787)] = 28082, + [SMALL_STATE(788)] = 28151, + [SMALL_STATE(789)] = 28220, + [SMALL_STATE(790)] = 28255, + [SMALL_STATE(791)] = 28290, + [SMALL_STATE(792)] = 28359, + [SMALL_STATE(793)] = 28428, + [SMALL_STATE(794)] = 28463, + [SMALL_STATE(795)] = 28532, + [SMALL_STATE(796)] = 28601, + [SMALL_STATE(797)] = 28670, + [SMALL_STATE(798)] = 28705, + [SMALL_STATE(799)] = 28740, + [SMALL_STATE(800)] = 28809, + [SMALL_STATE(801)] = 28878, + [SMALL_STATE(802)] = 28917, + [SMALL_STATE(803)] = 28952, + [SMALL_STATE(804)] = 28987, + [SMALL_STATE(805)] = 29056, + [SMALL_STATE(806)] = 29095, + [SMALL_STATE(807)] = 29164, + [SMALL_STATE(808)] = 29199, + [SMALL_STATE(809)] = 29268, + [SMALL_STATE(810)] = 29303, + [SMALL_STATE(811)] = 29338, + [SMALL_STATE(812)] = 29373, + [SMALL_STATE(813)] = 29408, + [SMALL_STATE(814)] = 29477, + [SMALL_STATE(815)] = 29546, + [SMALL_STATE(816)] = 29615, + [SMALL_STATE(817)] = 29650, + [SMALL_STATE(818)] = 29685, + [SMALL_STATE(819)] = 29720, + [SMALL_STATE(820)] = 29773, + [SMALL_STATE(821)] = 29808, + [SMALL_STATE(822)] = 29843, + [SMALL_STATE(823)] = 29878, + [SMALL_STATE(824)] = 29917, + [SMALL_STATE(825)] = 29986, + [SMALL_STATE(826)] = 30055, + [SMALL_STATE(827)] = 30124, + [SMALL_STATE(828)] = 30159, + [SMALL_STATE(829)] = 30228, + [SMALL_STATE(830)] = 30263, + [SMALL_STATE(831)] = 30302, + [SMALL_STATE(832)] = 30360, + [SMALL_STATE(833)] = 30415, + [SMALL_STATE(834)] = 30470, + [SMALL_STATE(835)] = 30525, + [SMALL_STATE(836)] = 30580, + [SMALL_STATE(837)] = 30635, + [SMALL_STATE(838)] = 30690, + [SMALL_STATE(839)] = 30745, + [SMALL_STATE(840)] = 30800, + [SMALL_STATE(841)] = 30855, + [SMALL_STATE(842)] = 30910, + [SMALL_STATE(843)] = 30965, + [SMALL_STATE(844)] = 31020, + [SMALL_STATE(845)] = 31066, + [SMALL_STATE(846)] = 31112, + [SMALL_STATE(847)] = 31158, + [SMALL_STATE(848)] = 31204, + [SMALL_STATE(849)] = 31239, + [SMALL_STATE(850)] = 31274, + [SMALL_STATE(851)] = 31325, + [SMALL_STATE(852)] = 31360, + [SMALL_STATE(853)] = 31395, + [SMALL_STATE(854)] = 31430, + [SMALL_STATE(855)] = 31478, + [SMALL_STATE(856)] = 31526, + [SMALL_STATE(857)] = 31560, + [SMALL_STATE(858)] = 31608, + [SMALL_STATE(859)] = 31656, + [SMALL_STATE(860)] = 31704, + [SMALL_STATE(861)] = 31752, + [SMALL_STATE(862)] = 31800, + [SMALL_STATE(863)] = 31848, + [SMALL_STATE(864)] = 31896, + [SMALL_STATE(865)] = 31927, + [SMALL_STATE(866)] = 31956, + [SMALL_STATE(867)] = 31989, + [SMALL_STATE(868)] = 32018, + [SMALL_STATE(869)] = 32047, + [SMALL_STATE(870)] = 32076, + [SMALL_STATE(871)] = 32105, + [SMALL_STATE(872)] = 32148, + [SMALL_STATE(873)] = 32177, + [SMALL_STATE(874)] = 32206, + [SMALL_STATE(875)] = 32239, + [SMALL_STATE(876)] = 32294, + [SMALL_STATE(877)] = 32323, + [SMALL_STATE(878)] = 32352, + [SMALL_STATE(879)] = 32407, + [SMALL_STATE(880)] = 32436, + [SMALL_STATE(881)] = 32465, + [SMALL_STATE(882)] = 32494, + [SMALL_STATE(883)] = 32523, + [SMALL_STATE(884)] = 32552, + [SMALL_STATE(885)] = 32581, + [SMALL_STATE(886)] = 32624, + [SMALL_STATE(887)] = 32653, + [SMALL_STATE(888)] = 32682, + [SMALL_STATE(889)] = 32711, + [SMALL_STATE(890)] = 32740, + [SMALL_STATE(891)] = 32769, + [SMALL_STATE(892)] = 32798, + [SMALL_STATE(893)] = 32838, + [SMALL_STATE(894)] = 32866, + [SMALL_STATE(895)] = 32906, + [SMALL_STATE(896)] = 32946, + [SMALL_STATE(897)] = 32994, + [SMALL_STATE(898)] = 33034, + [SMALL_STATE(899)] = 33062, + [SMALL_STATE(900)] = 33102, + [SMALL_STATE(901)] = 33142, + [SMALL_STATE(902)] = 33174, + [SMALL_STATE(903)] = 33210, + [SMALL_STATE(904)] = 33244, + [SMALL_STATE(905)] = 33272, + [SMALL_STATE(906)] = 33312, + [SMALL_STATE(907)] = 33352, + [SMALL_STATE(908)] = 33392, + [SMALL_STATE(909)] = 33420, + [SMALL_STATE(910)] = 33460, + [SMALL_STATE(911)] = 33500, + [SMALL_STATE(912)] = 33540, + [SMALL_STATE(913)] = 33580, + [SMALL_STATE(914)] = 33624, + [SMALL_STATE(915)] = 33664, + [SMALL_STATE(916)] = 33704, + [SMALL_STATE(917)] = 33744, + [SMALL_STATE(918)] = 33790, + [SMALL_STATE(919)] = 33830, + [SMALL_STATE(920)] = 33870, + [SMALL_STATE(921)] = 33910, + [SMALL_STATE(922)] = 33956, + [SMALL_STATE(923)] = 33996, + [SMALL_STATE(924)] = 34024, + [SMALL_STATE(925)] = 34052, + [SMALL_STATE(926)] = 34102, + [SMALL_STATE(927)] = 34142, + [SMALL_STATE(928)] = 34190, + [SMALL_STATE(929)] = 34218, + [SMALL_STATE(930)] = 34246, + [SMALL_STATE(931)] = 34286, + [SMALL_STATE(932)] = 34314, + [SMALL_STATE(933)] = 34356, + [SMALL_STATE(934)] = 34396, + [SMALL_STATE(935)] = 34436, + [SMALL_STATE(936)] = 34476, + [SMALL_STATE(937)] = 34516, + [SMALL_STATE(938)] = 34556, + [SMALL_STATE(939)] = 34584, + [SMALL_STATE(940)] = 34624, + [SMALL_STATE(941)] = 34664, + [SMALL_STATE(942)] = 34704, + [SMALL_STATE(943)] = 34744, + [SMALL_STATE(944)] = 34784, + [SMALL_STATE(945)] = 34824, + [SMALL_STATE(946)] = 34864, + [SMALL_STATE(947)] = 34904, + [SMALL_STATE(948)] = 34949, + [SMALL_STATE(949)] = 34976, + [SMALL_STATE(950)] = 35017, + [SMALL_STATE(951)] = 35062, + [SMALL_STATE(952)] = 35089, + [SMALL_STATE(953)] = 35116, + [SMALL_STATE(954)] = 35143, + [SMALL_STATE(955)] = 35170, + [SMALL_STATE(956)] = 35207, + [SMALL_STATE(957)] = 35234, + [SMALL_STATE(958)] = 35279, + [SMALL_STATE(959)] = 35308, + [SMALL_STATE(960)] = 35353, + [SMALL_STATE(961)] = 35380, + [SMALL_STATE(962)] = 35423, + [SMALL_STATE(963)] = 35450, + [SMALL_STATE(964)] = 35477, + [SMALL_STATE(965)] = 35508, + [SMALL_STATE(966)] = 35557, + [SMALL_STATE(967)] = 35602, + [SMALL_STATE(968)] = 35635, + [SMALL_STATE(969)] = 35662, + [SMALL_STATE(970)] = 35711, + [SMALL_STATE(971)] = 35756, + [SMALL_STATE(972)] = 35801, + [SMALL_STATE(973)] = 35836, + [SMALL_STATE(974)] = 35881, + [SMALL_STATE(975)] = 35926, + [SMALL_STATE(976)] = 35965, + [SMALL_STATE(977)] = 36010, + [SMALL_STATE(978)] = 36043, + [SMALL_STATE(979)] = 36082, + [SMALL_STATE(980)] = 36121, + [SMALL_STATE(981)] = 36160, + [SMALL_STATE(982)] = 36199, + [SMALL_STATE(983)] = 36238, + [SMALL_STATE(984)] = 36277, + [SMALL_STATE(985)] = 36316, + [SMALL_STATE(986)] = 36355, + [SMALL_STATE(987)] = 36394, + [SMALL_STATE(988)] = 36432, + [SMALL_STATE(989)] = 36470, + [SMALL_STATE(990)] = 36508, + [SMALL_STATE(991)] = 36540, + [SMALL_STATE(992)] = 36578, + [SMALL_STATE(993)] = 36616, + [SMALL_STATE(994)] = 36654, + [SMALL_STATE(995)] = 36685, + [SMALL_STATE(996)] = 36723, + [SMALL_STATE(997)] = 36761, + [SMALL_STATE(998)] = 36799, + [SMALL_STATE(999)] = 36820, + [SMALL_STATE(1000)] = 36841, + [SMALL_STATE(1001)] = 36879, + [SMALL_STATE(1002)] = 36911, + [SMALL_STATE(1003)] = 36943, + [SMALL_STATE(1004)] = 36975, + [SMALL_STATE(1005)] = 37007, + [SMALL_STATE(1006)] = 37039, + [SMALL_STATE(1007)] = 37077, + [SMALL_STATE(1008)] = 37109, + [SMALL_STATE(1009)] = 37141, + [SMALL_STATE(1010)] = 37179, + [SMALL_STATE(1011)] = 37211, + [SMALL_STATE(1012)] = 37249, + [SMALL_STATE(1013)] = 37281, + [SMALL_STATE(1014)] = 37310, + [SMALL_STATE(1015)] = 37345, + [SMALL_STATE(1016)] = 37380, + [SMALL_STATE(1017)] = 37403, + [SMALL_STATE(1018)] = 37430, + [SMALL_STATE(1019)] = 37459, + [SMALL_STATE(1020)] = 37488, + [SMALL_STATE(1021)] = 37517, + [SMALL_STATE(1022)] = 37546, + [SMALL_STATE(1023)] = 37575, + [SMALL_STATE(1024)] = 37604, + [SMALL_STATE(1025)] = 37631, + [SMALL_STATE(1026)] = 37654, + [SMALL_STATE(1027)] = 37683, + [SMALL_STATE(1028)] = 37710, + [SMALL_STATE(1029)] = 37739, + [SMALL_STATE(1030)] = 37768, + [SMALL_STATE(1031)] = 37803, + [SMALL_STATE(1032)] = 37832, + [SMALL_STATE(1033)] = 37861, + [SMALL_STATE(1034)] = 37884, + [SMALL_STATE(1035)] = 37913, + [SMALL_STATE(1036)] = 37942, + [SMALL_STATE(1037)] = 37965, + [SMALL_STATE(1038)] = 37994, + [SMALL_STATE(1039)] = 38021, + [SMALL_STATE(1040)] = 38050, + [SMALL_STATE(1041)] = 38079, + [SMALL_STATE(1042)] = 38097, + [SMALL_STATE(1043)] = 38123, + [SMALL_STATE(1044)] = 38155, + [SMALL_STATE(1045)] = 38177, + [SMALL_STATE(1046)] = 38195, + [SMALL_STATE(1047)] = 38221, + [SMALL_STATE(1048)] = 38253, + [SMALL_STATE(1049)] = 38285, + [SMALL_STATE(1050)] = 38317, + [SMALL_STATE(1051)] = 38335, + [SMALL_STATE(1052)] = 38361, + [SMALL_STATE(1053)] = 38387, + [SMALL_STATE(1054)] = 38408, + [SMALL_STATE(1055)] = 38433, + [SMALL_STATE(1056)] = 38462, + [SMALL_STATE(1057)] = 38491, + [SMALL_STATE(1058)] = 38518, + [SMALL_STATE(1059)] = 38543, + [SMALL_STATE(1060)] = 38572, + [SMALL_STATE(1061)] = 38601, + [SMALL_STATE(1062)] = 38622, + [SMALL_STATE(1063)] = 38643, + [SMALL_STATE(1064)] = 38672, + [SMALL_STATE(1065)] = 38693, + [SMALL_STATE(1066)] = 38718, + [SMALL_STATE(1067)] = 38747, + [SMALL_STATE(1068)] = 38772, + [SMALL_STATE(1069)] = 38801, + [SMALL_STATE(1070)] = 38826, + [SMALL_STATE(1071)] = 38847, + [SMALL_STATE(1072)] = 38876, + [SMALL_STATE(1073)] = 38902, + [SMALL_STATE(1074)] = 38918, + [SMALL_STATE(1075)] = 38942, + [SMALL_STATE(1076)] = 38958, + [SMALL_STATE(1077)] = 38974, + [SMALL_STATE(1078)] = 38990, + [SMALL_STATE(1079)] = 39016, + [SMALL_STATE(1080)] = 39040, + [SMALL_STATE(1081)] = 39056, + [SMALL_STATE(1082)] = 39082, + [SMALL_STATE(1083)] = 39098, + [SMALL_STATE(1084)] = 39124, + [SMALL_STATE(1085)] = 39144, + [SMALL_STATE(1086)] = 39159, + [SMALL_STATE(1087)] = 39174, + [SMALL_STATE(1088)] = 39189, + [SMALL_STATE(1089)] = 39212, + [SMALL_STATE(1090)] = 39235, + [SMALL_STATE(1091)] = 39250, + [SMALL_STATE(1092)] = 39265, + [SMALL_STATE(1093)] = 39288, + [SMALL_STATE(1094)] = 39303, + [SMALL_STATE(1095)] = 39318, + [SMALL_STATE(1096)] = 39333, + [SMALL_STATE(1097)] = 39347, + [SMALL_STATE(1098)] = 39361, + [SMALL_STATE(1099)] = 39375, + [SMALL_STATE(1100)] = 39393, + [SMALL_STATE(1101)] = 39407, + [SMALL_STATE(1102)] = 39421, + [SMALL_STATE(1103)] = 39439, + [SMALL_STATE(1104)] = 39453, + [SMALL_STATE(1105)] = 39467, + [SMALL_STATE(1106)] = 39481, + [SMALL_STATE(1107)] = 39500, + [SMALL_STATE(1108)] = 39519, + [SMALL_STATE(1109)] = 39536, + [SMALL_STATE(1110)] = 39555, + [SMALL_STATE(1111)] = 39572, + [SMALL_STATE(1112)] = 39591, + [SMALL_STATE(1113)] = 39610, + [SMALL_STATE(1114)] = 39627, + [SMALL_STATE(1115)] = 39644, + [SMALL_STATE(1116)] = 39660, + [SMALL_STATE(1117)] = 39670, + [SMALL_STATE(1118)] = 39686, + [SMALL_STATE(1119)] = 39696, + [SMALL_STATE(1120)] = 39712, + [SMALL_STATE(1121)] = 39722, + [SMALL_STATE(1122)] = 39732, + [SMALL_STATE(1123)] = 39748, + [SMALL_STATE(1124)] = 39764, + [SMALL_STATE(1125)] = 39780, + [SMALL_STATE(1126)] = 39790, + [SMALL_STATE(1127)] = 39804, + [SMALL_STATE(1128)] = 39820, + [SMALL_STATE(1129)] = 39836, + [SMALL_STATE(1130)] = 39852, + [SMALL_STATE(1131)] = 39868, + [SMALL_STATE(1132)] = 39878, + [SMALL_STATE(1133)] = 39894, + [SMALL_STATE(1134)] = 39904, [SMALL_STATE(1135)] = 39914, - [SMALL_STATE(1136)] = 39924, - [SMALL_STATE(1137)] = 39940, - [SMALL_STATE(1138)] = 39950, - [SMALL_STATE(1139)] = 39966, - [SMALL_STATE(1140)] = 39976, - [SMALL_STATE(1141)] = 39986, - [SMALL_STATE(1142)] = 39996, - [SMALL_STATE(1143)] = 40012, - [SMALL_STATE(1144)] = 40022, - [SMALL_STATE(1145)] = 40038, - [SMALL_STATE(1146)] = 40054, - [SMALL_STATE(1147)] = 40070, - [SMALL_STATE(1148)] = 40086, - [SMALL_STATE(1149)] = 40096, - [SMALL_STATE(1150)] = 40112, - [SMALL_STATE(1151)] = 40122, - [SMALL_STATE(1152)] = 40132, - [SMALL_STATE(1153)] = 40148, - [SMALL_STATE(1154)] = 40164, - [SMALL_STATE(1155)] = 40177, - [SMALL_STATE(1156)] = 40190, - [SMALL_STATE(1157)] = 40203, - [SMALL_STATE(1158)] = 40216, - [SMALL_STATE(1159)] = 40227, - [SMALL_STATE(1160)] = 40240, - [SMALL_STATE(1161)] = 40253, - [SMALL_STATE(1162)] = 40266, - [SMALL_STATE(1163)] = 40279, - [SMALL_STATE(1164)] = 40292, - [SMALL_STATE(1165)] = 40305, - [SMALL_STATE(1166)] = 40318, - [SMALL_STATE(1167)] = 40331, - [SMALL_STATE(1168)] = 40344, - [SMALL_STATE(1169)] = 40357, - [SMALL_STATE(1170)] = 40370, - [SMALL_STATE(1171)] = 40383, - [SMALL_STATE(1172)] = 40392, - [SMALL_STATE(1173)] = 40405, - [SMALL_STATE(1174)] = 40418, - [SMALL_STATE(1175)] = 40431, - [SMALL_STATE(1176)] = 40444, - [SMALL_STATE(1177)] = 40457, - [SMALL_STATE(1178)] = 40470, - [SMALL_STATE(1179)] = 40483, - [SMALL_STATE(1180)] = 40496, - [SMALL_STATE(1181)] = 40509, - [SMALL_STATE(1182)] = 40522, - [SMALL_STATE(1183)] = 40535, - [SMALL_STATE(1184)] = 40548, - [SMALL_STATE(1185)] = 40561, - [SMALL_STATE(1186)] = 40574, - [SMALL_STATE(1187)] = 40587, - [SMALL_STATE(1188)] = 40596, - [SMALL_STATE(1189)] = 40609, - [SMALL_STATE(1190)] = 40622, - [SMALL_STATE(1191)] = 40635, - [SMALL_STATE(1192)] = 40648, - [SMALL_STATE(1193)] = 40661, - [SMALL_STATE(1194)] = 40674, - [SMALL_STATE(1195)] = 40685, - [SMALL_STATE(1196)] = 40698, - [SMALL_STATE(1197)] = 40711, - [SMALL_STATE(1198)] = 40724, - [SMALL_STATE(1199)] = 40737, - [SMALL_STATE(1200)] = 40750, - [SMALL_STATE(1201)] = 40763, - [SMALL_STATE(1202)] = 40776, - [SMALL_STATE(1203)] = 40789, - [SMALL_STATE(1204)] = 40802, - [SMALL_STATE(1205)] = 40815, - [SMALL_STATE(1206)] = 40828, - [SMALL_STATE(1207)] = 40841, - [SMALL_STATE(1208)] = 40854, - [SMALL_STATE(1209)] = 40867, - [SMALL_STATE(1210)] = 40880, - [SMALL_STATE(1211)] = 40893, - [SMALL_STATE(1212)] = 40906, - [SMALL_STATE(1213)] = 40919, - [SMALL_STATE(1214)] = 40932, - [SMALL_STATE(1215)] = 40942, - [SMALL_STATE(1216)] = 40950, - [SMALL_STATE(1217)] = 40958, - [SMALL_STATE(1218)] = 40968, - [SMALL_STATE(1219)] = 40978, - [SMALL_STATE(1220)] = 40986, - [SMALL_STATE(1221)] = 40994, - [SMALL_STATE(1222)] = 41002, - [SMALL_STATE(1223)] = 41012, - [SMALL_STATE(1224)] = 41022, - [SMALL_STATE(1225)] = 41032, - [SMALL_STATE(1226)] = 41042, - [SMALL_STATE(1227)] = 41050, - [SMALL_STATE(1228)] = 41058, - [SMALL_STATE(1229)] = 41068, - [SMALL_STATE(1230)] = 41076, - [SMALL_STATE(1231)] = 41084, - [SMALL_STATE(1232)] = 41092, - [SMALL_STATE(1233)] = 41100, - [SMALL_STATE(1234)] = 41110, - [SMALL_STATE(1235)] = 41118, - [SMALL_STATE(1236)] = 41128, - [SMALL_STATE(1237)] = 41136, - [SMALL_STATE(1238)] = 41146, - [SMALL_STATE(1239)] = 41156, - [SMALL_STATE(1240)] = 41166, - [SMALL_STATE(1241)] = 41176, - [SMALL_STATE(1242)] = 41186, - [SMALL_STATE(1243)] = 41196, - [SMALL_STATE(1244)] = 41204, - [SMALL_STATE(1245)] = 41214, - [SMALL_STATE(1246)] = 41222, - [SMALL_STATE(1247)] = 41232, - [SMALL_STATE(1248)] = 41242, - [SMALL_STATE(1249)] = 41252, - [SMALL_STATE(1250)] = 41260, + [SMALL_STATE(1136)] = 39928, + [SMALL_STATE(1137)] = 39938, + [SMALL_STATE(1138)] = 39954, + [SMALL_STATE(1139)] = 39970, + [SMALL_STATE(1140)] = 39986, + [SMALL_STATE(1141)] = 40002, + [SMALL_STATE(1142)] = 40012, + [SMALL_STATE(1143)] = 40022, + [SMALL_STATE(1144)] = 40032, + [SMALL_STATE(1145)] = 40048, + [SMALL_STATE(1146)] = 40064, + [SMALL_STATE(1147)] = 40080, + [SMALL_STATE(1148)] = 40096, + [SMALL_STATE(1149)] = 40112, + [SMALL_STATE(1150)] = 40125, + [SMALL_STATE(1151)] = 40138, + [SMALL_STATE(1152)] = 40151, + [SMALL_STATE(1153)] = 40164, + [SMALL_STATE(1154)] = 40177, + [SMALL_STATE(1155)] = 40190, + [SMALL_STATE(1156)] = 40203, + [SMALL_STATE(1157)] = 40216, + [SMALL_STATE(1158)] = 40229, + [SMALL_STATE(1159)] = 40242, + [SMALL_STATE(1160)] = 40255, + [SMALL_STATE(1161)] = 40268, + [SMALL_STATE(1162)] = 40281, + [SMALL_STATE(1163)] = 40294, + [SMALL_STATE(1164)] = 40307, + [SMALL_STATE(1165)] = 40320, + [SMALL_STATE(1166)] = 40333, + [SMALL_STATE(1167)] = 40346, + [SMALL_STATE(1168)] = 40359, + [SMALL_STATE(1169)] = 40372, + [SMALL_STATE(1170)] = 40385, + [SMALL_STATE(1171)] = 40398, + [SMALL_STATE(1172)] = 40411, + [SMALL_STATE(1173)] = 40424, + [SMALL_STATE(1174)] = 40437, + [SMALL_STATE(1175)] = 40450, + [SMALL_STATE(1176)] = 40463, + [SMALL_STATE(1177)] = 40476, + [SMALL_STATE(1178)] = 40489, + [SMALL_STATE(1179)] = 40502, + [SMALL_STATE(1180)] = 40513, + [SMALL_STATE(1181)] = 40526, + [SMALL_STATE(1182)] = 40539, + [SMALL_STATE(1183)] = 40552, + [SMALL_STATE(1184)] = 40565, + [SMALL_STATE(1185)] = 40578, + [SMALL_STATE(1186)] = 40591, + [SMALL_STATE(1187)] = 40604, + [SMALL_STATE(1188)] = 40617, + [SMALL_STATE(1189)] = 40630, + [SMALL_STATE(1190)] = 40643, + [SMALL_STATE(1191)] = 40656, + [SMALL_STATE(1192)] = 40665, + [SMALL_STATE(1193)] = 40678, + [SMALL_STATE(1194)] = 40691, + [SMALL_STATE(1195)] = 40704, + [SMALL_STATE(1196)] = 40717, + [SMALL_STATE(1197)] = 40730, + [SMALL_STATE(1198)] = 40741, + [SMALL_STATE(1199)] = 40754, + [SMALL_STATE(1200)] = 40767, + [SMALL_STATE(1201)] = 40776, + [SMALL_STATE(1202)] = 40789, + [SMALL_STATE(1203)] = 40802, + [SMALL_STATE(1204)] = 40815, + [SMALL_STATE(1205)] = 40828, + [SMALL_STATE(1206)] = 40841, + [SMALL_STATE(1207)] = 40854, + [SMALL_STATE(1208)] = 40867, + [SMALL_STATE(1209)] = 40880, + [SMALL_STATE(1210)] = 40890, + [SMALL_STATE(1211)] = 40898, + [SMALL_STATE(1212)] = 40908, + [SMALL_STATE(1213)] = 40916, + [SMALL_STATE(1214)] = 40924, + [SMALL_STATE(1215)] = 40934, + [SMALL_STATE(1216)] = 40942, + [SMALL_STATE(1217)] = 40952, + [SMALL_STATE(1218)] = 40962, + [SMALL_STATE(1219)] = 40972, + [SMALL_STATE(1220)] = 40980, + [SMALL_STATE(1221)] = 40990, + [SMALL_STATE(1222)] = 41000, + [SMALL_STATE(1223)] = 41010, + [SMALL_STATE(1224)] = 41018, + [SMALL_STATE(1225)] = 41028, + [SMALL_STATE(1226)] = 41038, + [SMALL_STATE(1227)] = 41046, + [SMALL_STATE(1228)] = 41054, + [SMALL_STATE(1229)] = 41064, + [SMALL_STATE(1230)] = 41072, + [SMALL_STATE(1231)] = 41080, + [SMALL_STATE(1232)] = 41090, + [SMALL_STATE(1233)] = 41098, + [SMALL_STATE(1234)] = 41108, + [SMALL_STATE(1235)] = 41116, + [SMALL_STATE(1236)] = 41126, + [SMALL_STATE(1237)] = 41134, + [SMALL_STATE(1238)] = 41142, + [SMALL_STATE(1239)] = 41150, + [SMALL_STATE(1240)] = 41160, + [SMALL_STATE(1241)] = 41170, + [SMALL_STATE(1242)] = 41180, + [SMALL_STATE(1243)] = 41190, + [SMALL_STATE(1244)] = 41198, + [SMALL_STATE(1245)] = 41208, + [SMALL_STATE(1246)] = 41218, + [SMALL_STATE(1247)] = 41228, + [SMALL_STATE(1248)] = 41238, + [SMALL_STATE(1249)] = 41248, + [SMALL_STATE(1250)] = 41258, [SMALL_STATE(1251)] = 41268, - [SMALL_STATE(1252)] = 41276, - [SMALL_STATE(1253)] = 41286, - [SMALL_STATE(1254)] = 41296, - [SMALL_STATE(1255)] = 41306, - [SMALL_STATE(1256)] = 41316, + [SMALL_STATE(1252)] = 41278, + [SMALL_STATE(1253)] = 41288, + [SMALL_STATE(1254)] = 41298, + [SMALL_STATE(1255)] = 41308, + [SMALL_STATE(1256)] = 41318, [SMALL_STATE(1257)] = 41326, [SMALL_STATE(1258)] = 41336, [SMALL_STATE(1259)] = 41346, @@ -73848,201 +73783,196 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1261)] = 41366, [SMALL_STATE(1262)] = 41376, [SMALL_STATE(1263)] = 41386, - [SMALL_STATE(1264)] = 41396, - [SMALL_STATE(1265)] = 41406, - [SMALL_STATE(1266)] = 41416, - [SMALL_STATE(1267)] = 41426, - [SMALL_STATE(1268)] = 41436, - [SMALL_STATE(1269)] = 41444, - [SMALL_STATE(1270)] = 41454, - [SMALL_STATE(1271)] = 41464, - [SMALL_STATE(1272)] = 41474, - [SMALL_STATE(1273)] = 41484, - [SMALL_STATE(1274)] = 41494, - [SMALL_STATE(1275)] = 41504, - [SMALL_STATE(1276)] = 41514, - [SMALL_STATE(1277)] = 41521, - [SMALL_STATE(1278)] = 41528, - [SMALL_STATE(1279)] = 41535, - [SMALL_STATE(1280)] = 41542, - [SMALL_STATE(1281)] = 41549, - [SMALL_STATE(1282)] = 41556, - [SMALL_STATE(1283)] = 41563, - [SMALL_STATE(1284)] = 41570, - [SMALL_STATE(1285)] = 41577, - [SMALL_STATE(1286)] = 41584, - [SMALL_STATE(1287)] = 41591, - [SMALL_STATE(1288)] = 41598, - [SMALL_STATE(1289)] = 41605, - [SMALL_STATE(1290)] = 41612, - [SMALL_STATE(1291)] = 41619, - [SMALL_STATE(1292)] = 41626, - [SMALL_STATE(1293)] = 41633, - [SMALL_STATE(1294)] = 41640, - [SMALL_STATE(1295)] = 41647, - [SMALL_STATE(1296)] = 41654, - [SMALL_STATE(1297)] = 41661, - [SMALL_STATE(1298)] = 41668, - [SMALL_STATE(1299)] = 41675, - [SMALL_STATE(1300)] = 41682, - [SMALL_STATE(1301)] = 41689, - [SMALL_STATE(1302)] = 41696, - [SMALL_STATE(1303)] = 41703, - [SMALL_STATE(1304)] = 41710, - [SMALL_STATE(1305)] = 41717, - [SMALL_STATE(1306)] = 41724, - [SMALL_STATE(1307)] = 41731, - [SMALL_STATE(1308)] = 41738, - [SMALL_STATE(1309)] = 41745, - [SMALL_STATE(1310)] = 41752, - [SMALL_STATE(1311)] = 41759, - [SMALL_STATE(1312)] = 41766, - [SMALL_STATE(1313)] = 41773, - [SMALL_STATE(1314)] = 41780, - [SMALL_STATE(1315)] = 41787, - [SMALL_STATE(1316)] = 41794, - [SMALL_STATE(1317)] = 41801, - [SMALL_STATE(1318)] = 41808, - [SMALL_STATE(1319)] = 41815, - [SMALL_STATE(1320)] = 41822, - [SMALL_STATE(1321)] = 41829, - [SMALL_STATE(1322)] = 41836, - [SMALL_STATE(1323)] = 41843, - [SMALL_STATE(1324)] = 41850, - [SMALL_STATE(1325)] = 41857, - [SMALL_STATE(1326)] = 41864, - [SMALL_STATE(1327)] = 41871, - [SMALL_STATE(1328)] = 41878, - [SMALL_STATE(1329)] = 41885, - [SMALL_STATE(1330)] = 41892, - [SMALL_STATE(1331)] = 41899, - [SMALL_STATE(1332)] = 41906, - [SMALL_STATE(1333)] = 41913, - [SMALL_STATE(1334)] = 41920, - [SMALL_STATE(1335)] = 41927, - [SMALL_STATE(1336)] = 41934, - [SMALL_STATE(1337)] = 41941, - [SMALL_STATE(1338)] = 41948, - [SMALL_STATE(1339)] = 41955, - [SMALL_STATE(1340)] = 41962, - [SMALL_STATE(1341)] = 41969, - [SMALL_STATE(1342)] = 41976, - [SMALL_STATE(1343)] = 41983, - [SMALL_STATE(1344)] = 41990, - [SMALL_STATE(1345)] = 41997, - [SMALL_STATE(1346)] = 42004, - [SMALL_STATE(1347)] = 42011, - [SMALL_STATE(1348)] = 42018, - [SMALL_STATE(1349)] = 42025, - [SMALL_STATE(1350)] = 42032, - [SMALL_STATE(1351)] = 42039, - [SMALL_STATE(1352)] = 42046, - [SMALL_STATE(1353)] = 42053, - [SMALL_STATE(1354)] = 42060, - [SMALL_STATE(1355)] = 42067, - [SMALL_STATE(1356)] = 42074, - [SMALL_STATE(1357)] = 42081, - [SMALL_STATE(1358)] = 42088, - [SMALL_STATE(1359)] = 42095, - [SMALL_STATE(1360)] = 42102, - [SMALL_STATE(1361)] = 42109, - [SMALL_STATE(1362)] = 42116, - [SMALL_STATE(1363)] = 42123, - [SMALL_STATE(1364)] = 42130, - [SMALL_STATE(1365)] = 42137, - [SMALL_STATE(1366)] = 42144, - [SMALL_STATE(1367)] = 42151, - [SMALL_STATE(1368)] = 42158, - [SMALL_STATE(1369)] = 42165, - [SMALL_STATE(1370)] = 42172, - [SMALL_STATE(1371)] = 42179, - [SMALL_STATE(1372)] = 42186, - [SMALL_STATE(1373)] = 42193, - [SMALL_STATE(1374)] = 42200, - [SMALL_STATE(1375)] = 42207, - [SMALL_STATE(1376)] = 42214, - [SMALL_STATE(1377)] = 42221, - [SMALL_STATE(1378)] = 42228, - [SMALL_STATE(1379)] = 42235, - [SMALL_STATE(1380)] = 42242, - [SMALL_STATE(1381)] = 42249, - [SMALL_STATE(1382)] = 42256, - [SMALL_STATE(1383)] = 42263, - [SMALL_STATE(1384)] = 42270, - [SMALL_STATE(1385)] = 42277, - [SMALL_STATE(1386)] = 42284, - [SMALL_STATE(1387)] = 42291, - [SMALL_STATE(1388)] = 42298, - [SMALL_STATE(1389)] = 42305, - [SMALL_STATE(1390)] = 42312, - [SMALL_STATE(1391)] = 42319, - [SMALL_STATE(1392)] = 42326, - [SMALL_STATE(1393)] = 42333, - [SMALL_STATE(1394)] = 42340, - [SMALL_STATE(1395)] = 42347, - [SMALL_STATE(1396)] = 42354, - [SMALL_STATE(1397)] = 42361, - [SMALL_STATE(1398)] = 42368, - [SMALL_STATE(1399)] = 42375, - [SMALL_STATE(1400)] = 42382, - [SMALL_STATE(1401)] = 42389, - [SMALL_STATE(1402)] = 42396, - [SMALL_STATE(1403)] = 42403, - [SMALL_STATE(1404)] = 42410, - [SMALL_STATE(1405)] = 42417, - [SMALL_STATE(1406)] = 42424, - [SMALL_STATE(1407)] = 42431, - [SMALL_STATE(1408)] = 42438, - [SMALL_STATE(1409)] = 42445, - [SMALL_STATE(1410)] = 42452, - [SMALL_STATE(1411)] = 42459, - [SMALL_STATE(1412)] = 42466, - [SMALL_STATE(1413)] = 42473, - [SMALL_STATE(1414)] = 42480, - [SMALL_STATE(1415)] = 42487, - [SMALL_STATE(1416)] = 42494, - [SMALL_STATE(1417)] = 42501, - [SMALL_STATE(1418)] = 42508, - [SMALL_STATE(1419)] = 42515, - [SMALL_STATE(1420)] = 42522, - [SMALL_STATE(1421)] = 42529, - [SMALL_STATE(1422)] = 42536, - [SMALL_STATE(1423)] = 42543, - [SMALL_STATE(1424)] = 42550, - [SMALL_STATE(1425)] = 42557, - [SMALL_STATE(1426)] = 42564, - [SMALL_STATE(1427)] = 42571, - [SMALL_STATE(1428)] = 42578, - [SMALL_STATE(1429)] = 42585, - [SMALL_STATE(1430)] = 42592, - [SMALL_STATE(1431)] = 42599, - [SMALL_STATE(1432)] = 42606, - [SMALL_STATE(1433)] = 42613, - [SMALL_STATE(1434)] = 42620, - [SMALL_STATE(1435)] = 42627, - [SMALL_STATE(1436)] = 42634, - [SMALL_STATE(1437)] = 42641, - [SMALL_STATE(1438)] = 42648, - [SMALL_STATE(1439)] = 42655, - [SMALL_STATE(1440)] = 42662, - [SMALL_STATE(1441)] = 42669, - [SMALL_STATE(1442)] = 42676, - [SMALL_STATE(1443)] = 42683, - [SMALL_STATE(1444)] = 42690, - [SMALL_STATE(1445)] = 42697, - [SMALL_STATE(1446)] = 42704, - [SMALL_STATE(1447)] = 42711, - [SMALL_STATE(1448)] = 42718, - [SMALL_STATE(1449)] = 42725, - [SMALL_STATE(1450)] = 42732, - [SMALL_STATE(1451)] = 42739, - [SMALL_STATE(1452)] = 42746, - [SMALL_STATE(1453)] = 42753, - [SMALL_STATE(1454)] = 42760, - [SMALL_STATE(1455)] = 42767, - [SMALL_STATE(1456)] = 42774, - [SMALL_STATE(1457)] = 42781, - [SMALL_STATE(1458)] = 42788, + [SMALL_STATE(1264)] = 41394, + [SMALL_STATE(1265)] = 41402, + [SMALL_STATE(1266)] = 41412, + [SMALL_STATE(1267)] = 41422, + [SMALL_STATE(1268)] = 41432, + [SMALL_STATE(1269)] = 41442, + [SMALL_STATE(1270)] = 41452, + [SMALL_STATE(1271)] = 41462, + [SMALL_STATE(1272)] = 41469, + [SMALL_STATE(1273)] = 41476, + [SMALL_STATE(1274)] = 41483, + [SMALL_STATE(1275)] = 41490, + [SMALL_STATE(1276)] = 41497, + [SMALL_STATE(1277)] = 41504, + [SMALL_STATE(1278)] = 41511, + [SMALL_STATE(1279)] = 41518, + [SMALL_STATE(1280)] = 41525, + [SMALL_STATE(1281)] = 41532, + [SMALL_STATE(1282)] = 41539, + [SMALL_STATE(1283)] = 41546, + [SMALL_STATE(1284)] = 41553, + [SMALL_STATE(1285)] = 41560, + [SMALL_STATE(1286)] = 41567, + [SMALL_STATE(1287)] = 41574, + [SMALL_STATE(1288)] = 41581, + [SMALL_STATE(1289)] = 41588, + [SMALL_STATE(1290)] = 41595, + [SMALL_STATE(1291)] = 41602, + [SMALL_STATE(1292)] = 41609, + [SMALL_STATE(1293)] = 41616, + [SMALL_STATE(1294)] = 41623, + [SMALL_STATE(1295)] = 41630, + [SMALL_STATE(1296)] = 41637, + [SMALL_STATE(1297)] = 41644, + [SMALL_STATE(1298)] = 41651, + [SMALL_STATE(1299)] = 41658, + [SMALL_STATE(1300)] = 41665, + [SMALL_STATE(1301)] = 41672, + [SMALL_STATE(1302)] = 41679, + [SMALL_STATE(1303)] = 41686, + [SMALL_STATE(1304)] = 41693, + [SMALL_STATE(1305)] = 41700, + [SMALL_STATE(1306)] = 41707, + [SMALL_STATE(1307)] = 41714, + [SMALL_STATE(1308)] = 41721, + [SMALL_STATE(1309)] = 41728, + [SMALL_STATE(1310)] = 41735, + [SMALL_STATE(1311)] = 41742, + [SMALL_STATE(1312)] = 41749, + [SMALL_STATE(1313)] = 41756, + [SMALL_STATE(1314)] = 41763, + [SMALL_STATE(1315)] = 41770, + [SMALL_STATE(1316)] = 41777, + [SMALL_STATE(1317)] = 41784, + [SMALL_STATE(1318)] = 41791, + [SMALL_STATE(1319)] = 41798, + [SMALL_STATE(1320)] = 41805, + [SMALL_STATE(1321)] = 41812, + [SMALL_STATE(1322)] = 41819, + [SMALL_STATE(1323)] = 41826, + [SMALL_STATE(1324)] = 41833, + [SMALL_STATE(1325)] = 41840, + [SMALL_STATE(1326)] = 41847, + [SMALL_STATE(1327)] = 41854, + [SMALL_STATE(1328)] = 41861, + [SMALL_STATE(1329)] = 41868, + [SMALL_STATE(1330)] = 41875, + [SMALL_STATE(1331)] = 41882, + [SMALL_STATE(1332)] = 41889, + [SMALL_STATE(1333)] = 41896, + [SMALL_STATE(1334)] = 41903, + [SMALL_STATE(1335)] = 41910, + [SMALL_STATE(1336)] = 41917, + [SMALL_STATE(1337)] = 41924, + [SMALL_STATE(1338)] = 41931, + [SMALL_STATE(1339)] = 41938, + [SMALL_STATE(1340)] = 41945, + [SMALL_STATE(1341)] = 41952, + [SMALL_STATE(1342)] = 41959, + [SMALL_STATE(1343)] = 41966, + [SMALL_STATE(1344)] = 41973, + [SMALL_STATE(1345)] = 41980, + [SMALL_STATE(1346)] = 41987, + [SMALL_STATE(1347)] = 41994, + [SMALL_STATE(1348)] = 42001, + [SMALL_STATE(1349)] = 42008, + [SMALL_STATE(1350)] = 42015, + [SMALL_STATE(1351)] = 42022, + [SMALL_STATE(1352)] = 42029, + [SMALL_STATE(1353)] = 42036, + [SMALL_STATE(1354)] = 42043, + [SMALL_STATE(1355)] = 42050, + [SMALL_STATE(1356)] = 42057, + [SMALL_STATE(1357)] = 42064, + [SMALL_STATE(1358)] = 42071, + [SMALL_STATE(1359)] = 42078, + [SMALL_STATE(1360)] = 42085, + [SMALL_STATE(1361)] = 42092, + [SMALL_STATE(1362)] = 42099, + [SMALL_STATE(1363)] = 42106, + [SMALL_STATE(1364)] = 42113, + [SMALL_STATE(1365)] = 42120, + [SMALL_STATE(1366)] = 42127, + [SMALL_STATE(1367)] = 42134, + [SMALL_STATE(1368)] = 42141, + [SMALL_STATE(1369)] = 42148, + [SMALL_STATE(1370)] = 42155, + [SMALL_STATE(1371)] = 42162, + [SMALL_STATE(1372)] = 42169, + [SMALL_STATE(1373)] = 42176, + [SMALL_STATE(1374)] = 42183, + [SMALL_STATE(1375)] = 42190, + [SMALL_STATE(1376)] = 42197, + [SMALL_STATE(1377)] = 42204, + [SMALL_STATE(1378)] = 42211, + [SMALL_STATE(1379)] = 42218, + [SMALL_STATE(1380)] = 42225, + [SMALL_STATE(1381)] = 42232, + [SMALL_STATE(1382)] = 42239, + [SMALL_STATE(1383)] = 42246, + [SMALL_STATE(1384)] = 42253, + [SMALL_STATE(1385)] = 42260, + [SMALL_STATE(1386)] = 42267, + [SMALL_STATE(1387)] = 42274, + [SMALL_STATE(1388)] = 42281, + [SMALL_STATE(1389)] = 42288, + [SMALL_STATE(1390)] = 42295, + [SMALL_STATE(1391)] = 42302, + [SMALL_STATE(1392)] = 42309, + [SMALL_STATE(1393)] = 42316, + [SMALL_STATE(1394)] = 42323, + [SMALL_STATE(1395)] = 42330, + [SMALL_STATE(1396)] = 42337, + [SMALL_STATE(1397)] = 42344, + [SMALL_STATE(1398)] = 42351, + [SMALL_STATE(1399)] = 42358, + [SMALL_STATE(1400)] = 42365, + [SMALL_STATE(1401)] = 42372, + [SMALL_STATE(1402)] = 42379, + [SMALL_STATE(1403)] = 42386, + [SMALL_STATE(1404)] = 42393, + [SMALL_STATE(1405)] = 42400, + [SMALL_STATE(1406)] = 42407, + [SMALL_STATE(1407)] = 42414, + [SMALL_STATE(1408)] = 42421, + [SMALL_STATE(1409)] = 42428, + [SMALL_STATE(1410)] = 42435, + [SMALL_STATE(1411)] = 42442, + [SMALL_STATE(1412)] = 42449, + [SMALL_STATE(1413)] = 42456, + [SMALL_STATE(1414)] = 42463, + [SMALL_STATE(1415)] = 42470, + [SMALL_STATE(1416)] = 42477, + [SMALL_STATE(1417)] = 42484, + [SMALL_STATE(1418)] = 42491, + [SMALL_STATE(1419)] = 42498, + [SMALL_STATE(1420)] = 42505, + [SMALL_STATE(1421)] = 42512, + [SMALL_STATE(1422)] = 42519, + [SMALL_STATE(1423)] = 42526, + [SMALL_STATE(1424)] = 42533, + [SMALL_STATE(1425)] = 42540, + [SMALL_STATE(1426)] = 42547, + [SMALL_STATE(1427)] = 42554, + [SMALL_STATE(1428)] = 42561, + [SMALL_STATE(1429)] = 42568, + [SMALL_STATE(1430)] = 42575, + [SMALL_STATE(1431)] = 42582, + [SMALL_STATE(1432)] = 42589, + [SMALL_STATE(1433)] = 42596, + [SMALL_STATE(1434)] = 42603, + [SMALL_STATE(1435)] = 42610, + [SMALL_STATE(1436)] = 42617, + [SMALL_STATE(1437)] = 42624, + [SMALL_STATE(1438)] = 42631, + [SMALL_STATE(1439)] = 42638, + [SMALL_STATE(1440)] = 42645, + [SMALL_STATE(1441)] = 42652, + [SMALL_STATE(1442)] = 42659, + [SMALL_STATE(1443)] = 42666, + [SMALL_STATE(1444)] = 42673, + [SMALL_STATE(1445)] = 42680, + [SMALL_STATE(1446)] = 42687, + [SMALL_STATE(1447)] = 42694, + [SMALL_STATE(1448)] = 42701, + [SMALL_STATE(1449)] = 42708, + [SMALL_STATE(1450)] = 42715, + [SMALL_STATE(1451)] = 42722, + [SMALL_STATE(1452)] = 42729, + [SMALL_STATE(1453)] = 42736, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -74050,1566 +73980,1630 @@ 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(406), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [99] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(411), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1064), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1370), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(407), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1070), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1365), [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(930), [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1371), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1214), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(382), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(586), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(586), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(578), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(74), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(868), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(833), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1454), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1275), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1451), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(896), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(687), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(676), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(775), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(881), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1208), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1116), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1114), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1241), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(594), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1390), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(316), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1456), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(453), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1388), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1387), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1377), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(524), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(522), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(549), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1268), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1132), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(549), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1366), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1225), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(378), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(582), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(582), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(580), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(70), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(862), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(805), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1449), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1266), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1446), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(884), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(688), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(685), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(785), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(882), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1154), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1112), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1111), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1218), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(607), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1325), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1267), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(237), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1451), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(468), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1450), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1447), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1372), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(568), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(536), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(589), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1122), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(589), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(412), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1060), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1309), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(924), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1310), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(159), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(864), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(801), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1238), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1274), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(528), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1374), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1242), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(333), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(450), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1381), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1384), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1316), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(410), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1068), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1414), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(937), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1397), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1261), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(141), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(861), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(764), - [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1224), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(523), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1308), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1225), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(313), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1458), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(467), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1288), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1296), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1401), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(406), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1075), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1400), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(899), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1457), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1223), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(136), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(865), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(830), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1272), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1271), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(508), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1443), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1270), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(306), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1440), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(449), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1439), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1437), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1436), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(407), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(382), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(586), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(586), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(578), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(74), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(868), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(687), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1454), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1275), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1451), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(676), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(775), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(881), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1208), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1116), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1114), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1248), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1241), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1247), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(316), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1456), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(453), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1388), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1387), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1377), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(524), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(522), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(549), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1268), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1132), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(549), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(405), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(136), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(865), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1272), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1271), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1270), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(306), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1440), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(449), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1439), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1437), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1436), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(409), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(141), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(861), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1224), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1256), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1225), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(313), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1458), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(467), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1288), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1296), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1401), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(408), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(159), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(864), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1238), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1274), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1242), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(333), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1453), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(450), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1381), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1384), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1316), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(405), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1064), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1395), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(899), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1452), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1270), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(271), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(857), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(744), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1265), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(564), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1438), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1257), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(128), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1435), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(442), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1434), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1432), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1431), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(403), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1062), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(906), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1306), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1269), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(142), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(859), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(801), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1255), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1244), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(591), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1436), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(278), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1448), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(474), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1443), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1444), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1312), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(401), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1053), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1409), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(937), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1392), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1268), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(274), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(860), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(823), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1222), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1233), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(603), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1286), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1224), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(134), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(460), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1322), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1321), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1396), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(402), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(378), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(582), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(582), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(580), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(70), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(862), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(688), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1449), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1266), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1446), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(685), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(785), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(882), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1154), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1112), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1111), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1253), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1218), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1267), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(237), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1451), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(468), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1450), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1447), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1372), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(536), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(589), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1256), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1122), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(589), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(404), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(142), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(859), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1255), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1244), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1262), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(278), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1448), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(474), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1443), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1444), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1312), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(408), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(271), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(857), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1265), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1260), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1257), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(128), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1435), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(442), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1434), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1432), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1431), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(274), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(860), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(36), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1222), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1233), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1224), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(134), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1453), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(460), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1322), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1321), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1396), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 82), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 82), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 79), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 79), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_non_case_statement, 2), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_non_case_statement, 2), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 80), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 80), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 83), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 83), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 58), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 58), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 61), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 61), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 62), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 62), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 69), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 69), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 70), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 70), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 71), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 71), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 75), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 75), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 84), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 84), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 78), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 78), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 66), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 66), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 54), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 54), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1244] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(855), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(876), - [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1415), - [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(931), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1344), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1264), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(687), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1454), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1273), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1451), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(676), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(775), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(881), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1208), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1116), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1114), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1416), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(904), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1386), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1267), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1396), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(917), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1368), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1222), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1132), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1239), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(687), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1454), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1273), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1451), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(676), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(667), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 60), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 74), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(774), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(891), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(855), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(676), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2414] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(855), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1003), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1004), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 63), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1454), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 72), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1275), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 72), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 63), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 72), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 63), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 73), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 73), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 64), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 64), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(606), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1283), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 56), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 57), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1022), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 73), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 64), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 67), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1152), - [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1152), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1218), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(570), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(934), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1220), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(620), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 68), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(421), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1033), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1244), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1005), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 54), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 66), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 54), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 66), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3323] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 78), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 78), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 84), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 84), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 83), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 83), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 82), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 82), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 58), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 58), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 59), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 59), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 61), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 61), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 62), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 62), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 80), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 80), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 79), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 79), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 69), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 69), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 70), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 70), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 71), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 71), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 75), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 75), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 51), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 51), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 66), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 66), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 54), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 54), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(617), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(378), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(582), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(582), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(580), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(271), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1245), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(23), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1265), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1260), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(564), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1438), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1257), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(128), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1435), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(442), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1434), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1432), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1431), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(568), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(536), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(589), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1256), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1122), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(589), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(611), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(70), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1253), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1218), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(607), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1325), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1267), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(237), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1451), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(468), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1450), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1447), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1372), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(612), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(274), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(36), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1222), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1233), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(603), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1286), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1224), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(134), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1453), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(460), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1322), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1321), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1396), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(615), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(142), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1255), + [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1244), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(591), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1436), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1262), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(278), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1448), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(474), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1443), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1444), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1312), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1441] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(850), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(864), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1410), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(922), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1339), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1259), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(688), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1449), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1217), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1446), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(685), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(785), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(882), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1154), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1112), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1111), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1391), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(926), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1363), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1220), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1411), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(940), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1381), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1254), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1122), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(688), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1449), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1217), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1446), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(685), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(661), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 74), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 60), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(883), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(830), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(850), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(685), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2618] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(850), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(999), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(998), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1266), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 72), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1449), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 72), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 72), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 64), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 64), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 73), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 73), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(604), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1277), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 64), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 56), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 57), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 67), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1022), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1139), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1139), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 73), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1021), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1209), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(504), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(911), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1234), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(415), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(618), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1005), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1221), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 68), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 54), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 66), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 54), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 66), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3517] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), }; #ifdef __cplusplus diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index a3a33af3e..2b87ddf1c 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -279,6 +279,10 @@ void f() { [[a]]; [[a]] label: {} [[a]] goto label; + + // these are c++ specific, but their bind locations should be c-compatible + if (true) [[likely]] {} else [[unlikely]] {} + do [[likely]] {} while (true); } --- @@ -307,5 +311,12 @@ void f() { (attributed_statement (attribute_declaration (attribute (identifier))) (expression_statement (identifier))) (attributed_statement (attribute_declaration (attribute (identifier))) (expression_statement)) (attributed_statement (attribute_declaration (attribute (identifier))) (labeled_statement (statement_identifier) (compound_statement))) - (attributed_statement (attribute_declaration (attribute (identifier))) (goto_statement (statement_identifier)))))) - + (attributed_statement (attribute_declaration (attribute (identifier))) (goto_statement (statement_identifier))) + (comment) + (if_statement + (parenthesized_expression (true)) + (attributed_statement (attribute_declaration (attribute (identifier))) (compound_statement)) + (attributed_statement (attribute_declaration (attribute (identifier))) (compound_statement))) + (do_statement + (attributed_statement (attribute_declaration (attribute (identifier))) (compound_statement)) + (parenthesized_expression (true)))))) From 94bc261b1ada441b04071e857512deea4d09357c Mon Sep 17 00:00:00 2001 From: Ismail A Bella <60820321+abellaismail7@users.noreply.github.com> Date: Sun, 10 Jul 2022 05:45:49 +0000 Subject: [PATCH 5/8] fix: allow multiple expressions inside for_statement condition --- grammar.js | 2 +- src/grammar.json | 13 +- src/node-types.json | 4 + src/parser.c | 71028 +++++++++++++++++++++--------------------- 4 files changed, 35596 insertions(+), 35451 deletions(-) diff --git a/grammar.js b/grammar.js index 8375585b1..73619fcd8 100644 --- a/grammar.js +++ b/grammar.js @@ -686,7 +686,7 @@ module.exports = grammar({ field('initializer', $.declaration), seq(field('initializer', optional(choice($._expression, $.comma_expression))), ';') ), - field('condition', optional($._expression)), ';', + field('condition', optional(choice($._expression, $.comma_expression))), ';', field('update', optional(choice($._expression, $.comma_expression))), ')', field('body', $._statement) diff --git a/src/grammar.json b/src/grammar.json index eafc61dfb..3b3ba317b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4177,8 +4177,17 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] }, { "type": "BLANK" diff --git a/src/node-types.json b/src/node-types.json index 567a2a41f..ce327ec7d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1525,6 +1525,10 @@ { "type": "_expression", "named": true + }, + { + "type": "comma_expression", + "named": true } ] }, diff --git a/src/parser.c b/src/parser.c index 4b7831814..cf7f8c809 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1454 +#define STATE_COUNT 1466 #define LARGE_STATE_COUNT 382 #define SYMBOL_COUNT 266 #define ALIAS_COUNT 3 @@ -2429,13 +2429,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(13) END_STATE(); case 15: - if (lookahead == '\n') SKIP(17) + if (lookahead == '\n') SKIP(30) END_STATE(); case 16: - if (lookahead == '\n') SKIP(17) + if (lookahead == '\n') SKIP(30) if (lookahead == '\r') SKIP(15) END_STATE(); case 17: + if (lookahead == '\n') SKIP(19) + END_STATE(); + case 18: + if (lookahead == '\n') SKIP(19) + if (lookahead == '\r') SKIP(17) + END_STATE(); + case 19: if (lookahead == '\n') ADVANCE(86); if (lookahead == '!') ADVANCE(46); if (lookahead == '%') ADVANCE(156); @@ -2448,19 +2455,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(174); if (lookahead == '=') ADVANCE(47); if (lookahead == '>') ADVANCE(170); - if (lookahead == '\\') SKIP(16) + if (lookahead == '\\') SKIP(18) if (lookahead == '^') ADVANCE(162); if (lookahead == '|') ADVANCE(161); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(17) - END_STATE(); - case 18: - if (lookahead == '\n') SKIP(30) - END_STATE(); - case 19: - if (lookahead == '\n') SKIP(30) - if (lookahead == '\r') SKIP(18) + lookahead == ' ') SKIP(19) END_STATE(); case 20: if (lookahead == '\n') SKIP(35) @@ -2633,7 +2633,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(213); if (lookahead == 'L') ADVANCE(257); if (lookahead == 'U') ADVANCE(258); - if (lookahead == '\\') SKIP(19) + if (lookahead == '\\') SKIP(16) if (lookahead == 'u') ADVANCE(259); if (lookahead == '~') ADVANCE(141); if (lookahead == '\t' || @@ -5411,27 +5411,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [18] = {.lex_state = 28}, [19] = {.lex_state = 28}, [20] = {.lex_state = 28}, - [21] = {.lex_state = 29}, + [21] = {.lex_state = 83}, [22] = {.lex_state = 83}, - [23] = {.lex_state = 83}, + [23] = {.lex_state = 29}, [24] = {.lex_state = 83}, [25] = {.lex_state = 83}, - [26] = {.lex_state = 29}, + [26] = {.lex_state = 83}, [27] = {.lex_state = 83}, [28] = {.lex_state = 83}, [29] = {.lex_state = 83}, [30] = {.lex_state = 83}, [31] = {.lex_state = 83}, [32] = {.lex_state = 83}, - [33] = {.lex_state = 83}, + [33] = {.lex_state = 29}, [34] = {.lex_state = 83}, [35] = {.lex_state = 83}, [36] = {.lex_state = 83}, [37] = {.lex_state = 83}, [38] = {.lex_state = 83}, - [39] = {.lex_state = 83}, + [39] = {.lex_state = 29}, [40] = {.lex_state = 83}, - [41] = {.lex_state = 29}, + [41] = {.lex_state = 83}, [42] = {.lex_state = 83}, [43] = {.lex_state = 28}, [44] = {.lex_state = 28}, @@ -5441,18 +5441,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [48] = {.lex_state = 83}, [49] = {.lex_state = 29}, [50] = {.lex_state = 83}, - [51] = {.lex_state = 83}, - [52] = {.lex_state = 83}, + [51] = {.lex_state = 29}, + [52] = {.lex_state = 29}, [53] = {.lex_state = 83}, [54] = {.lex_state = 83}, - [55] = {.lex_state = 29}, + [55] = {.lex_state = 83}, [56] = {.lex_state = 29}, - [57] = {.lex_state = 83}, + [57] = {.lex_state = 29}, [58] = {.lex_state = 83}, - [59] = {.lex_state = 29}, + [59] = {.lex_state = 83}, [60] = {.lex_state = 83}, [61] = {.lex_state = 83}, - [62] = {.lex_state = 29}, + [62] = {.lex_state = 83}, [63] = {.lex_state = 83}, [64] = {.lex_state = 83}, [65] = {.lex_state = 83}, @@ -5496,7 +5496,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 28}, [104] = {.lex_state = 28}, [105] = {.lex_state = 28}, - [106] = {.lex_state = 28}, + [106] = {.lex_state = 27}, [107] = {.lex_state = 28}, [108] = {.lex_state = 28}, [109] = {.lex_state = 28}, @@ -5509,7 +5509,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 28}, [117] = {.lex_state = 28}, [118] = {.lex_state = 28}, - [119] = {.lex_state = 27}, + [119] = {.lex_state = 28}, [120] = {.lex_state = 28}, [121] = {.lex_state = 28}, [122] = {.lex_state = 28}, @@ -5519,119 +5519,119 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 83}, [127] = {.lex_state = 83}, [128] = {.lex_state = 83}, - [129] = {.lex_state = 83}, - [130] = {.lex_state = 83}, + [129] = {.lex_state = 29}, + [130] = {.lex_state = 29}, [131] = {.lex_state = 83}, [132] = {.lex_state = 83}, - [133] = {.lex_state = 83}, - [134] = {.lex_state = 83}, - [135] = {.lex_state = 83}, + [133] = {.lex_state = 29}, + [134] = {.lex_state = 29}, + [135] = {.lex_state = 29}, [136] = {.lex_state = 83}, [137] = {.lex_state = 83}, [138] = {.lex_state = 83}, [139] = {.lex_state = 83}, [140] = {.lex_state = 83}, - [141] = {.lex_state = 83}, - [142] = {.lex_state = 83}, + [141] = {.lex_state = 29}, + [142] = {.lex_state = 29}, [143] = {.lex_state = 83}, [144] = {.lex_state = 83}, [145] = {.lex_state = 83}, - [146] = {.lex_state = 83}, - [147] = {.lex_state = 83}, - [148] = {.lex_state = 83}, + [146] = {.lex_state = 29}, + [147] = {.lex_state = 29}, + [148] = {.lex_state = 29}, [149] = {.lex_state = 83}, - [150] = {.lex_state = 83}, + [150] = {.lex_state = 29}, [151] = {.lex_state = 83}, [152] = {.lex_state = 29}, [153] = {.lex_state = 83}, - [154] = {.lex_state = 29}, - [155] = {.lex_state = 83}, + [154] = {.lex_state = 83}, + [155] = {.lex_state = 29}, [156] = {.lex_state = 29}, [157] = {.lex_state = 83}, [158] = {.lex_state = 83}, - [159] = {.lex_state = 29}, - [160] = {.lex_state = 29}, - [161] = {.lex_state = 83}, + [159] = {.lex_state = 83}, + [160] = {.lex_state = 83}, + [161] = {.lex_state = 29}, [162] = {.lex_state = 83}, [163] = {.lex_state = 83}, [164] = {.lex_state = 83}, - [165] = {.lex_state = 29}, + [165] = {.lex_state = 83}, [166] = {.lex_state = 83}, [167] = {.lex_state = 83}, [168] = {.lex_state = 83}, - [169] = {.lex_state = 29}, - [170] = {.lex_state = 29}, + [169] = {.lex_state = 83}, + [170] = {.lex_state = 83}, [171] = {.lex_state = 83}, - [172] = {.lex_state = 83}, + [172] = {.lex_state = 29}, [173] = {.lex_state = 83}, - [174] = {.lex_state = 29}, - [175] = {.lex_state = 29}, + [174] = {.lex_state = 83}, + [175] = {.lex_state = 83}, [176] = {.lex_state = 83}, [177] = {.lex_state = 83}, - [178] = {.lex_state = 29}, - [179] = {.lex_state = 29}, - [180] = {.lex_state = 29}, - [181] = {.lex_state = 29}, + [178] = {.lex_state = 83}, + [179] = {.lex_state = 83}, + [180] = {.lex_state = 83}, + [181] = {.lex_state = 83}, [182] = {.lex_state = 83}, [183] = {.lex_state = 83}, - [184] = {.lex_state = 83}, - [185] = {.lex_state = 83}, + [184] = {.lex_state = 29}, + [185] = {.lex_state = 29}, [186] = {.lex_state = 83}, [187] = {.lex_state = 83}, [188] = {.lex_state = 83}, [189] = {.lex_state = 83}, [190] = {.lex_state = 83}, - [191] = {.lex_state = 83}, + [191] = {.lex_state = 29}, [192] = {.lex_state = 83}, - [193] = {.lex_state = 29}, + [193] = {.lex_state = 83}, [194] = {.lex_state = 29}, [195] = {.lex_state = 83}, - [196] = {.lex_state = 29}, + [196] = {.lex_state = 83}, [197] = {.lex_state = 83}, [198] = {.lex_state = 83}, - [199] = {.lex_state = 83}, - [200] = {.lex_state = 29}, - [201] = {.lex_state = 83}, - [202] = {.lex_state = 83}, + [199] = {.lex_state = 29}, + [200] = {.lex_state = 83}, + [201] = {.lex_state = 29}, + [202] = {.lex_state = 29}, [203] = {.lex_state = 83}, [204] = {.lex_state = 83}, [205] = {.lex_state = 83}, [206] = {.lex_state = 83}, [207] = {.lex_state = 83}, [208] = {.lex_state = 83}, - [209] = {.lex_state = 29}, - [210] = {.lex_state = 83}, - [211] = {.lex_state = 83}, + [209] = {.lex_state = 83}, + [210] = {.lex_state = 29}, + [211] = {.lex_state = 29}, [212] = {.lex_state = 83}, - [213] = {.lex_state = 29}, - [214] = {.lex_state = 29}, - [215] = {.lex_state = 29}, - [216] = {.lex_state = 29}, - [217] = {.lex_state = 83}, - [218] = {.lex_state = 29}, - [219] = {.lex_state = 29}, + [213] = {.lex_state = 83}, + [214] = {.lex_state = 83}, + [215] = {.lex_state = 83}, + [216] = {.lex_state = 83}, + [217] = {.lex_state = 29}, + [218] = {.lex_state = 83}, + [219] = {.lex_state = 83}, [220] = {.lex_state = 83}, [221] = {.lex_state = 83}, - [222] = {.lex_state = 29}, - [223] = {.lex_state = 29}, - [224] = {.lex_state = 29}, + [222] = {.lex_state = 83}, + [223] = {.lex_state = 83}, + [224] = {.lex_state = 83}, [225] = {.lex_state = 83}, - [226] = {.lex_state = 83}, + [226] = {.lex_state = 29}, [227] = {.lex_state = 83}, [228] = {.lex_state = 83}, [229] = {.lex_state = 83}, [230] = {.lex_state = 83}, - [231] = {.lex_state = 83}, + [231] = {.lex_state = 29}, [232] = {.lex_state = 83}, [233] = {.lex_state = 83}, [234] = {.lex_state = 83}, - [235] = {.lex_state = 83}, + [235] = {.lex_state = 29}, [236] = {.lex_state = 83}, [237] = {.lex_state = 83}, [238] = {.lex_state = 83}, [239] = {.lex_state = 83}, [240] = {.lex_state = 83}, - [241] = {.lex_state = 83}, + [241] = {.lex_state = 29}, [242] = {.lex_state = 83}, [243] = {.lex_state = 83}, [244] = {.lex_state = 83}, @@ -5639,16 +5639,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [246] = {.lex_state = 83}, [247] = {.lex_state = 83}, [248] = {.lex_state = 83}, - [249] = {.lex_state = 29}, + [249] = {.lex_state = 83}, [250] = {.lex_state = 83}, [251] = {.lex_state = 83}, - [252] = {.lex_state = 29}, + [252] = {.lex_state = 83}, [253] = {.lex_state = 83}, - [254] = {.lex_state = 29}, - [255] = {.lex_state = 29}, + [254] = {.lex_state = 83}, + [255] = {.lex_state = 83}, [256] = {.lex_state = 83}, [257] = {.lex_state = 83}, - [258] = {.lex_state = 29}, + [258] = {.lex_state = 83}, [259] = {.lex_state = 83}, [260] = {.lex_state = 83}, [261] = {.lex_state = 83}, @@ -5657,14 +5657,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [264] = {.lex_state = 83}, [265] = {.lex_state = 83}, [266] = {.lex_state = 83}, - [267] = {.lex_state = 29}, + [267] = {.lex_state = 83}, [268] = {.lex_state = 83}, [269] = {.lex_state = 83}, [270] = {.lex_state = 83}, [271] = {.lex_state = 83}, [272] = {.lex_state = 83}, [273] = {.lex_state = 83}, - [274] = {.lex_state = 29}, + [274] = {.lex_state = 83}, [275] = {.lex_state = 83}, [276] = {.lex_state = 83}, [277] = {.lex_state = 83}, @@ -5673,23 +5673,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [280] = {.lex_state = 83}, [281] = {.lex_state = 83}, [282] = {.lex_state = 83}, - [283] = {.lex_state = 83}, + [283] = {.lex_state = 29}, [284] = {.lex_state = 83}, [285] = {.lex_state = 83}, [286] = {.lex_state = 83}, [287] = {.lex_state = 83}, [288] = {.lex_state = 83}, [289] = {.lex_state = 83}, - [290] = {.lex_state = 83}, + [290] = {.lex_state = 29}, [291] = {.lex_state = 83}, [292] = {.lex_state = 83}, [293] = {.lex_state = 83}, [294] = {.lex_state = 83}, [295] = {.lex_state = 83}, - [296] = {.lex_state = 83}, + [296] = {.lex_state = 29}, [297] = {.lex_state = 83}, - [298] = {.lex_state = 83}, - [299] = {.lex_state = 83}, + [298] = {.lex_state = 29}, + [299] = {.lex_state = 29}, [300] = {.lex_state = 83}, [301] = {.lex_state = 83}, [302] = {.lex_state = 83}, @@ -5701,7 +5701,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [308] = {.lex_state = 83}, [309] = {.lex_state = 83}, [310] = {.lex_state = 83}, - [311] = {.lex_state = 29}, + [311] = {.lex_state = 83}, [312] = {.lex_state = 83}, [313] = {.lex_state = 83}, [314] = {.lex_state = 83}, @@ -5709,7 +5709,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [316] = {.lex_state = 83}, [317] = {.lex_state = 83}, [318] = {.lex_state = 83}, - [319] = {.lex_state = 83}, + [319] = {.lex_state = 29}, [320] = {.lex_state = 83}, [321] = {.lex_state = 29}, [322] = {.lex_state = 29}, @@ -5719,48 +5719,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [326] = {.lex_state = 83}, [327] = {.lex_state = 83}, [328] = {.lex_state = 83}, - [329] = {.lex_state = 29}, + [329] = {.lex_state = 83}, [330] = {.lex_state = 83}, [331] = {.lex_state = 83}, [332] = {.lex_state = 83}, [333] = {.lex_state = 83}, [334] = {.lex_state = 29}, - [335] = {.lex_state = 29}, + [335] = {.lex_state = 83}, [336] = {.lex_state = 83}, - [337] = {.lex_state = 29}, - [338] = {.lex_state = 29}, + [337] = {.lex_state = 83}, + [338] = {.lex_state = 83}, [339] = {.lex_state = 83}, [340] = {.lex_state = 83}, [341] = {.lex_state = 83}, - [342] = {.lex_state = 29}, + [342] = {.lex_state = 83}, [343] = {.lex_state = 83}, [344] = {.lex_state = 83}, - [345] = {.lex_state = 83}, - [346] = {.lex_state = 29}, - [347] = {.lex_state = 83}, - [348] = {.lex_state = 83}, - [349] = {.lex_state = 29}, + [345] = {.lex_state = 29}, + [346] = {.lex_state = 83}, + [347] = {.lex_state = 29}, + [348] = {.lex_state = 29}, + [349] = {.lex_state = 83}, [350] = {.lex_state = 83}, [351] = {.lex_state = 29}, [352] = {.lex_state = 83}, - [353] = {.lex_state = 83}, - [354] = {.lex_state = 83}, + [353] = {.lex_state = 29}, + [354] = {.lex_state = 29}, [355] = {.lex_state = 83}, - [356] = {.lex_state = 83}, + [356] = {.lex_state = 29}, [357] = {.lex_state = 29}, - [358] = {.lex_state = 83}, - [359] = {.lex_state = 83}, + [358] = {.lex_state = 29}, + [359] = {.lex_state = 29}, [360] = {.lex_state = 29}, [361] = {.lex_state = 83}, [362] = {.lex_state = 29}, [363] = {.lex_state = 83}, - [364] = {.lex_state = 83}, + [364] = {.lex_state = 29}, [365] = {.lex_state = 29}, [366] = {.lex_state = 83}, [367] = {.lex_state = 83}, - [368] = {.lex_state = 29}, + [368] = {.lex_state = 83}, [369] = {.lex_state = 83}, - [370] = {.lex_state = 29}, + [370] = {.lex_state = 83}, [371] = {.lex_state = 29}, [372] = {.lex_state = 29}, [373] = {.lex_state = 27}, @@ -5772,9 +5772,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [379] = {.lex_state = 83}, [380] = {.lex_state = 83}, [381] = {.lex_state = 83}, - [382] = {.lex_state = 27}, + [382] = {.lex_state = 83}, [383] = {.lex_state = 83}, - [384] = {.lex_state = 83}, + [384] = {.lex_state = 27}, [385] = {.lex_state = 83}, [386] = {.lex_state = 33}, [387] = {.lex_state = 33}, @@ -5799,37 +5799,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [406] = {.lex_state = 32}, [407] = {.lex_state = 32}, [408] = {.lex_state = 32}, - [409] = {.lex_state = 33}, + [409] = {.lex_state = 32}, [410] = {.lex_state = 83}, - [411] = {.lex_state = 32}, + [411] = {.lex_state = 33}, [412] = {.lex_state = 83}, [413] = {.lex_state = 83}, [414] = {.lex_state = 32}, [415] = {.lex_state = 83}, [416] = {.lex_state = 32}, [417] = {.lex_state = 34}, - [418] = {.lex_state = 34}, - [419] = {.lex_state = 32}, + [418] = {.lex_state = 32}, + [419] = {.lex_state = 34}, [420] = {.lex_state = 34}, [421] = {.lex_state = 83}, - [422] = {.lex_state = 31}, - [423] = {.lex_state = 83}, - [424] = {.lex_state = 33}, + [422] = {.lex_state = 83}, + [423] = {.lex_state = 31}, + [424] = {.lex_state = 83}, [425] = {.lex_state = 83}, [426] = {.lex_state = 83}, - [427] = {.lex_state = 83}, + [427] = {.lex_state = 31}, [428] = {.lex_state = 83}, [429] = {.lex_state = 83}, - [430] = {.lex_state = 31}, + [430] = {.lex_state = 83}, [431] = {.lex_state = 83}, [432] = {.lex_state = 83}, - [433] = {.lex_state = 83}, - [434] = {.lex_state = 31}, + [433] = {.lex_state = 31}, + [434] = {.lex_state = 33}, [435] = {.lex_state = 33}, - [436] = {.lex_state = 33}, + [436] = {.lex_state = 31}, [437] = {.lex_state = 33}, [438] = {.lex_state = 33}, - [439] = {.lex_state = 31}, + [439] = {.lex_state = 33}, [440] = {.lex_state = 31}, [441] = {.lex_state = 83}, [442] = {.lex_state = 83}, @@ -5869,7 +5869,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [476] = {.lex_state = 83}, [477] = {.lex_state = 83}, [478] = {.lex_state = 83}, - [479] = {.lex_state = 32}, + [479] = {.lex_state = 83}, [480] = {.lex_state = 83}, [481] = {.lex_state = 83}, [482] = {.lex_state = 83}, @@ -5878,7 +5878,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [485] = {.lex_state = 83}, [486] = {.lex_state = 83}, [487] = {.lex_state = 83}, - [488] = {.lex_state = 83}, + [488] = {.lex_state = 32}, [489] = {.lex_state = 83}, [490] = {.lex_state = 83}, [491] = {.lex_state = 83}, @@ -5893,120 +5893,120 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [500] = {.lex_state = 83}, [501] = {.lex_state = 83}, [502] = {.lex_state = 83}, - [503] = {.lex_state = 32}, + [503] = {.lex_state = 83}, [504] = {.lex_state = 83}, - [505] = {.lex_state = 32}, - [506] = {.lex_state = 83}, - [507] = {.lex_state = 32}, + [505] = {.lex_state = 83}, + [506] = {.lex_state = 32}, + [507] = {.lex_state = 83}, [508] = {.lex_state = 83}, [509] = {.lex_state = 83}, [510] = {.lex_state = 83}, [511] = {.lex_state = 83}, [512] = {.lex_state = 83}, - [513] = {.lex_state = 83}, + [513] = {.lex_state = 32}, [514] = {.lex_state = 83}, - [515] = {.lex_state = 34}, - [516] = {.lex_state = 83}, + [515] = {.lex_state = 83}, + [516] = {.lex_state = 32}, [517] = {.lex_state = 83}, [518] = {.lex_state = 83}, - [519] = {.lex_state = 83}, + [519] = {.lex_state = 32}, [520] = {.lex_state = 83}, [521] = {.lex_state = 83}, - [522] = {.lex_state = 83}, - [523] = {.lex_state = 83}, - [524] = {.lex_state = 83}, + [522] = {.lex_state = 32}, + [523] = {.lex_state = 34}, + [524] = {.lex_state = 32}, [525] = {.lex_state = 83}, [526] = {.lex_state = 83}, - [527] = {.lex_state = 83}, + [527] = {.lex_state = 32}, [528] = {.lex_state = 83}, [529] = {.lex_state = 32}, [530] = {.lex_state = 83}, [531] = {.lex_state = 83}, - [532] = {.lex_state = 32}, - [533] = {.lex_state = 32}, + [532] = {.lex_state = 83}, + [533] = {.lex_state = 83}, [534] = {.lex_state = 83}, [535] = {.lex_state = 32}, [536] = {.lex_state = 83}, [537] = {.lex_state = 83}, [538] = {.lex_state = 83}, - [539] = {.lex_state = 32}, + [539] = {.lex_state = 83}, [540] = {.lex_state = 83}, - [541] = {.lex_state = 32}, + [541] = {.lex_state = 83}, [542] = {.lex_state = 83}, - [543] = {.lex_state = 32}, - [544] = {.lex_state = 32}, - [545] = {.lex_state = 83}, - [546] = {.lex_state = 83}, + [543] = {.lex_state = 83}, + [544] = {.lex_state = 83}, + [545] = {.lex_state = 32}, + [546] = {.lex_state = 32}, [547] = {.lex_state = 32}, - [548] = {.lex_state = 32}, - [549] = {.lex_state = 32}, + [548] = {.lex_state = 83}, + [549] = {.lex_state = 34}, [550] = {.lex_state = 83}, [551] = {.lex_state = 32}, [552] = {.lex_state = 83}, [553] = {.lex_state = 83}, [554] = {.lex_state = 83}, - [555] = {.lex_state = 32}, - [556] = {.lex_state = 34}, + [555] = {.lex_state = 83}, + [556] = {.lex_state = 83}, [557] = {.lex_state = 83}, - [558] = {.lex_state = 32}, + [558] = {.lex_state = 83}, [559] = {.lex_state = 83}, - [560] = {.lex_state = 32}, - [561] = {.lex_state = 32}, - [562] = {.lex_state = 32}, + [560] = {.lex_state = 83}, + [561] = {.lex_state = 83}, + [562] = {.lex_state = 83}, [563] = {.lex_state = 83}, [564] = {.lex_state = 83}, [565] = {.lex_state = 83}, - [566] = {.lex_state = 32}, + [566] = {.lex_state = 83}, [567] = {.lex_state = 83}, [568] = {.lex_state = 83}, [569] = {.lex_state = 83}, - [570] = {.lex_state = 83}, + [570] = {.lex_state = 32}, [571] = {.lex_state = 83}, [572] = {.lex_state = 83}, - [573] = {.lex_state = 32}, + [573] = {.lex_state = 83}, [574] = {.lex_state = 83}, - [575] = {.lex_state = 32}, + [575] = {.lex_state = 83}, [576] = {.lex_state = 83}, [577] = {.lex_state = 83}, - [578] = {.lex_state = 32}, + [578] = {.lex_state = 83}, [579] = {.lex_state = 83}, - [580] = {.lex_state = 83}, + [580] = {.lex_state = 32}, [581] = {.lex_state = 34}, - [582] = {.lex_state = 83}, + [582] = {.lex_state = 32}, [583] = {.lex_state = 32}, [584] = {.lex_state = 83}, [585] = {.lex_state = 32}, - [586] = {.lex_state = 83}, + [586] = {.lex_state = 32}, [587] = {.lex_state = 83}, [588] = {.lex_state = 83}, - [589] = {.lex_state = 32}, + [589] = {.lex_state = 83}, [590] = {.lex_state = 83}, [591] = {.lex_state = 83}, - [592] = {.lex_state = 32}, + [592] = {.lex_state = 83}, [593] = {.lex_state = 83}, - [594] = {.lex_state = 83}, - [595] = {.lex_state = 83}, - [596] = {.lex_state = 83}, - [597] = {.lex_state = 83}, + [594] = {.lex_state = 32}, + [595] = {.lex_state = 32}, + [596] = {.lex_state = 32}, + [597] = {.lex_state = 32}, [598] = {.lex_state = 32}, - [599] = {.lex_state = 83}, + [599] = {.lex_state = 32}, [600] = {.lex_state = 32}, - [601] = {.lex_state = 83}, + [601] = {.lex_state = 32}, [602] = {.lex_state = 83}, [603] = {.lex_state = 83}, - [604] = {.lex_state = 83}, - [605] = {.lex_state = 83}, - [606] = {.lex_state = 83}, + [604] = {.lex_state = 32}, + [605] = {.lex_state = 32}, + [606] = {.lex_state = 32}, [607] = {.lex_state = 83}, [608] = {.lex_state = 83}, [609] = {.lex_state = 32}, [610] = {.lex_state = 33}, - [611] = {.lex_state = 32}, + [611] = {.lex_state = 83}, [612] = {.lex_state = 32}, [613] = {.lex_state = 83}, [614] = {.lex_state = 83}, [615] = {.lex_state = 32}, - [616] = {.lex_state = 83}, + [616] = {.lex_state = 32}, [617] = {.lex_state = 32}, [618] = {.lex_state = 33}, [619] = {.lex_state = 32}, @@ -6051,15 +6051,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [658] = {.lex_state = 32}, [659] = {.lex_state = 32}, [660] = {.lex_state = 33}, - [661] = {.lex_state = 83}, - [662] = {.lex_state = 33}, + [661] = {.lex_state = 33}, + [662] = {.lex_state = 83}, [663] = {.lex_state = 33}, - [664] = {.lex_state = 33}, + [664] = {.lex_state = 32}, [665] = {.lex_state = 33}, [666] = {.lex_state = 33}, [667] = {.lex_state = 33}, [668] = {.lex_state = 33}, - [669] = {.lex_state = 32}, + [669] = {.lex_state = 33}, [670] = {.lex_state = 33}, [671] = {.lex_state = 33}, [672] = {.lex_state = 33}, @@ -6068,41 +6068,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [675] = {.lex_state = 33}, [676] = {.lex_state = 33}, [677] = {.lex_state = 33}, - [678] = {.lex_state = 33}, + [678] = {.lex_state = 32}, [679] = {.lex_state = 33}, [680] = {.lex_state = 33}, [681] = {.lex_state = 33}, [682] = {.lex_state = 33}, [683] = {.lex_state = 33}, - [684] = {.lex_state = 32}, + [684] = {.lex_state = 33}, [685] = {.lex_state = 33}, - [686] = {.lex_state = 32}, - [687] = {.lex_state = 32}, + [686] = {.lex_state = 33}, + [687] = {.lex_state = 33}, [688] = {.lex_state = 33}, - [689] = {.lex_state = 33}, - [690] = {.lex_state = 33}, + [689] = {.lex_state = 32}, + [690] = {.lex_state = 32}, [691] = {.lex_state = 32}, - [692] = {.lex_state = 32}, + [692] = {.lex_state = 33}, [693] = {.lex_state = 32}, [694] = {.lex_state = 32}, [695] = {.lex_state = 32}, [696] = {.lex_state = 32}, [697] = {.lex_state = 32}, [698] = {.lex_state = 32}, - [699] = {.lex_state = 33}, - [700] = {.lex_state = 33}, + [699] = {.lex_state = 32}, + [700] = {.lex_state = 32}, [701] = {.lex_state = 32}, - [702] = {.lex_state = 33}, - [703] = {.lex_state = 33}, - [704] = {.lex_state = 33}, + [702] = {.lex_state = 32}, + [703] = {.lex_state = 32}, + [704] = {.lex_state = 32}, [705] = {.lex_state = 32}, [706] = {.lex_state = 32}, - [707] = {.lex_state = 32}, - [708] = {.lex_state = 33}, + [707] = {.lex_state = 33}, + [708] = {.lex_state = 32}, [709] = {.lex_state = 32}, [710] = {.lex_state = 32}, [711] = {.lex_state = 32}, - [712] = {.lex_state = 32}, + [712] = {.lex_state = 33}, [713] = {.lex_state = 32}, [714] = {.lex_state = 32}, [715] = {.lex_state = 32}, @@ -6120,7 +6120,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [727] = {.lex_state = 32}, [728] = {.lex_state = 32}, [729] = {.lex_state = 32}, - [730] = {.lex_state = 32}, + [730] = {.lex_state = 33}, [731] = {.lex_state = 32}, [732] = {.lex_state = 32}, [733] = {.lex_state = 32}, @@ -6130,97 +6130,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [737] = {.lex_state = 32}, [738] = {.lex_state = 32}, [739] = {.lex_state = 32}, - [740] = {.lex_state = 34}, - [741] = {.lex_state = 34}, + [740] = {.lex_state = 32}, + [741] = {.lex_state = 32}, [742] = {.lex_state = 32}, - [743] = {.lex_state = 32}, - [744] = {.lex_state = 31}, + [743] = {.lex_state = 33}, + [744] = {.lex_state = 32}, [745] = {.lex_state = 32}, [746] = {.lex_state = 32}, [747] = {.lex_state = 32}, [748] = {.lex_state = 32}, [749] = {.lex_state = 32}, - [750] = {.lex_state = 32}, + [750] = {.lex_state = 33}, [751] = {.lex_state = 32}, [752] = {.lex_state = 32}, - [753] = {.lex_state = 34}, + [753] = {.lex_state = 32}, [754] = {.lex_state = 32}, [755] = {.lex_state = 32}, [756] = {.lex_state = 32}, [757] = {.lex_state = 32}, - [758] = {.lex_state = 32}, + [758] = {.lex_state = 33}, [759] = {.lex_state = 32}, [760] = {.lex_state = 32}, [761] = {.lex_state = 32}, [762] = {.lex_state = 32}, - [763] = {.lex_state = 32}, - [764] = {.lex_state = 32}, - [765] = {.lex_state = 32}, - [766] = {.lex_state = 32}, - [767] = {.lex_state = 32}, - [768] = {.lex_state = 32}, - [769] = {.lex_state = 32}, + [763] = {.lex_state = 31}, + [764] = {.lex_state = 34}, + [765] = {.lex_state = 34}, + [766] = {.lex_state = 34}, + [767] = {.lex_state = 34}, + [768] = {.lex_state = 34}, + [769] = {.lex_state = 34}, [770] = {.lex_state = 32}, [771] = {.lex_state = 32}, [772] = {.lex_state = 32}, [773] = {.lex_state = 32}, [774] = {.lex_state = 32}, [775] = {.lex_state = 32}, - [776] = {.lex_state = 34}, - [777] = {.lex_state = 34}, + [776] = {.lex_state = 32}, + [777] = {.lex_state = 32}, [778] = {.lex_state = 32}, [779] = {.lex_state = 32}, - [780] = {.lex_state = 34}, - [781] = {.lex_state = 34}, - [782] = {.lex_state = 32}, - [783] = {.lex_state = 34}, - [784] = {.lex_state = 32}, - [785] = {.lex_state = 33}, - [786] = {.lex_state = 34}, - [787] = {.lex_state = 32}, + [780] = {.lex_state = 32}, + [781] = {.lex_state = 32}, + [782] = {.lex_state = 34}, + [783] = {.lex_state = 32}, + [784] = {.lex_state = 31}, + [785] = {.lex_state = 32}, + [786] = {.lex_state = 32}, + [787] = {.lex_state = 31}, [788] = {.lex_state = 32}, [789] = {.lex_state = 34}, [790] = {.lex_state = 34}, - [791] = {.lex_state = 32}, + [791] = {.lex_state = 34}, [792] = {.lex_state = 32}, [793] = {.lex_state = 34}, [794] = {.lex_state = 32}, - [795] = {.lex_state = 32}, + [795] = {.lex_state = 34}, [796] = {.lex_state = 32}, - [797] = {.lex_state = 34}, - [798] = {.lex_state = 34}, - [799] = {.lex_state = 32}, - [800] = {.lex_state = 32}, - [801] = {.lex_state = 31}, + [797] = {.lex_state = 32}, + [798] = {.lex_state = 32}, + [799] = {.lex_state = 34}, + [800] = {.lex_state = 34}, + [801] = {.lex_state = 32}, [802] = {.lex_state = 32}, [803] = {.lex_state = 32}, [804] = {.lex_state = 32}, - [805] = {.lex_state = 31}, + [805] = {.lex_state = 32}, [806] = {.lex_state = 32}, [807] = {.lex_state = 32}, [808] = {.lex_state = 32}, - [809] = {.lex_state = 34}, - [810] = {.lex_state = 34}, - [811] = {.lex_state = 34}, - [812] = {.lex_state = 34}, - [813] = {.lex_state = 32}, + [809] = {.lex_state = 32}, + [810] = {.lex_state = 32}, + [811] = {.lex_state = 32}, + [812] = {.lex_state = 32}, + [813] = {.lex_state = 34}, [814] = {.lex_state = 32}, - [815] = {.lex_state = 32}, + [815] = {.lex_state = 31}, [816] = {.lex_state = 34}, [817] = {.lex_state = 32}, - [818] = {.lex_state = 32}, - [819] = {.lex_state = 32}, + [818] = {.lex_state = 33}, + [819] = {.lex_state = 34}, [820] = {.lex_state = 32}, - [821] = {.lex_state = 32}, - [822] = {.lex_state = 34}, - [823] = {.lex_state = 31}, + [821] = {.lex_state = 34}, + [822] = {.lex_state = 32}, + [823] = {.lex_state = 34}, [824] = {.lex_state = 32}, [825] = {.lex_state = 32}, [826] = {.lex_state = 32}, [827] = {.lex_state = 32}, [828] = {.lex_state = 32}, - [829] = {.lex_state = 32}, - [830] = {.lex_state = 33}, + [829] = {.lex_state = 34}, + [830] = {.lex_state = 32}, [831] = {.lex_state = 33}, [832] = {.lex_state = 33}, [833] = {.lex_state = 33}, @@ -6256,18 +6256,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [863] = {.lex_state = 33}, [864] = {.lex_state = 33}, [865] = {.lex_state = 33}, - [866] = {.lex_state = 17}, + [866] = {.lex_state = 33}, [867] = {.lex_state = 33}, [868] = {.lex_state = 33}, [869] = {.lex_state = 33}, [870] = {.lex_state = 33}, - [871] = {.lex_state = 30}, + [871] = {.lex_state = 33}, [872] = {.lex_state = 33}, [873] = {.lex_state = 33}, [874] = {.lex_state = 33}, [875] = {.lex_state = 33}, - [876] = {.lex_state = 33}, - [877] = {.lex_state = 33}, + [876] = {.lex_state = 30}, + [877] = {.lex_state = 19}, [878] = {.lex_state = 33}, [879] = {.lex_state = 33}, [880] = {.lex_state = 33}, @@ -6275,56 +6275,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [882] = {.lex_state = 33}, [883] = {.lex_state = 33}, [884] = {.lex_state = 33}, - [885] = {.lex_state = 30}, + [885] = {.lex_state = 33}, [886] = {.lex_state = 33}, [887] = {.lex_state = 33}, - [888] = {.lex_state = 33}, + [888] = {.lex_state = 30}, [889] = {.lex_state = 33}, [890] = {.lex_state = 33}, [891] = {.lex_state = 33}, - [892] = {.lex_state = 30}, + [892] = {.lex_state = 33}, [893] = {.lex_state = 33}, - [894] = {.lex_state = 33}, - [895] = {.lex_state = 30}, + [894] = {.lex_state = 30}, + [895] = {.lex_state = 33}, [896] = {.lex_state = 33}, - [897] = {.lex_state = 30}, + [897] = {.lex_state = 33}, [898] = {.lex_state = 33}, - [899] = {.lex_state = 30}, - [900] = {.lex_state = 30}, + [899] = {.lex_state = 33}, + [900] = {.lex_state = 33}, [901] = {.lex_state = 33}, - [902] = {.lex_state = 33}, + [902] = {.lex_state = 30}, [903] = {.lex_state = 33}, [904] = {.lex_state = 33}, [905] = {.lex_state = 30}, - [906] = {.lex_state = 30}, + [906] = {.lex_state = 33}, [907] = {.lex_state = 30}, [908] = {.lex_state = 33}, [909] = {.lex_state = 30}, [910] = {.lex_state = 30}, [911] = {.lex_state = 30}, [912] = {.lex_state = 30}, - [913] = {.lex_state = 33}, - [914] = {.lex_state = 30}, + [913] = {.lex_state = 30}, + [914] = {.lex_state = 33}, [915] = {.lex_state = 30}, [916] = {.lex_state = 30}, - [917] = {.lex_state = 33}, + [917] = {.lex_state = 30}, [918] = {.lex_state = 30}, [919] = {.lex_state = 30}, [920] = {.lex_state = 30}, [921] = {.lex_state = 33}, - [922] = {.lex_state = 30}, - [923] = {.lex_state = 33}, - [924] = {.lex_state = 33}, - [925] = {.lex_state = 33}, - [926] = {.lex_state = 30}, - [927] = {.lex_state = 33}, - [928] = {.lex_state = 33}, + [922] = {.lex_state = 33}, + [923] = {.lex_state = 30}, + [924] = {.lex_state = 30}, + [925] = {.lex_state = 30}, + [926] = {.lex_state = 33}, + [927] = {.lex_state = 30}, + [928] = {.lex_state = 30}, [929] = {.lex_state = 33}, [930] = {.lex_state = 30}, - [931] = {.lex_state = 33}, - [932] = {.lex_state = 33}, + [931] = {.lex_state = 30}, + [932] = {.lex_state = 30}, [933] = {.lex_state = 30}, - [934] = {.lex_state = 30}, + [934] = {.lex_state = 33}, [935] = {.lex_state = 30}, [936] = {.lex_state = 30}, [937] = {.lex_state = 30}, @@ -6336,38 +6336,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [943] = {.lex_state = 30}, [944] = {.lex_state = 30}, [945] = {.lex_state = 30}, - [946] = {.lex_state = 30}, - [947] = {.lex_state = 17}, - [948] = {.lex_state = 17}, - [949] = {.lex_state = 17}, - [950] = {.lex_state = 17}, - [951] = {.lex_state = 17}, - [952] = {.lex_state = 17}, - [953] = {.lex_state = 17}, - [954] = {.lex_state = 17}, - [955] = {.lex_state = 17}, - [956] = {.lex_state = 17}, - [957] = {.lex_state = 17}, - [958] = {.lex_state = 17}, - [959] = {.lex_state = 17}, - [960] = {.lex_state = 17}, - [961] = {.lex_state = 17}, - [962] = {.lex_state = 17}, - [963] = {.lex_state = 17}, - [964] = {.lex_state = 17}, - [965] = {.lex_state = 33}, - [966] = {.lex_state = 17}, - [967] = {.lex_state = 17}, - [968] = {.lex_state = 17}, - [969] = {.lex_state = 33}, - [970] = {.lex_state = 17}, - [971] = {.lex_state = 17}, - [972] = {.lex_state = 17}, - [973] = {.lex_state = 17}, - [974] = {.lex_state = 17}, - [975] = {.lex_state = 17}, - [976] = {.lex_state = 17}, - [977] = {.lex_state = 33}, + [946] = {.lex_state = 33}, + [947] = {.lex_state = 33}, + [948] = {.lex_state = 19}, + [949] = {.lex_state = 19}, + [950] = {.lex_state = 19}, + [951] = {.lex_state = 19}, + [952] = {.lex_state = 19}, + [953] = {.lex_state = 19}, + [954] = {.lex_state = 19}, + [955] = {.lex_state = 19}, + [956] = {.lex_state = 19}, + [957] = {.lex_state = 19}, + [958] = {.lex_state = 19}, + [959] = {.lex_state = 19}, + [960] = {.lex_state = 19}, + [961] = {.lex_state = 33}, + [962] = {.lex_state = 19}, + [963] = {.lex_state = 19}, + [964] = {.lex_state = 33}, + [965] = {.lex_state = 19}, + [966] = {.lex_state = 19}, + [967] = {.lex_state = 19}, + [968] = {.lex_state = 19}, + [969] = {.lex_state = 19}, + [970] = {.lex_state = 19}, + [971] = {.lex_state = 19}, + [972] = {.lex_state = 19}, + [973] = {.lex_state = 19}, + [974] = {.lex_state = 19}, + [975] = {.lex_state = 19}, + [976] = {.lex_state = 19}, + [977] = {.lex_state = 19}, [978] = {.lex_state = 33}, [979] = {.lex_state = 33}, [980] = {.lex_state = 33}, @@ -6391,36 +6391,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [998] = {.lex_state = 33}, [999] = {.lex_state = 33}, [1000] = {.lex_state = 83}, - [1001] = {.lex_state = 33}, - [1002] = {.lex_state = 33}, + [1001] = {.lex_state = 83}, + [1002] = {.lex_state = 83}, [1003] = {.lex_state = 33}, [1004] = {.lex_state = 33}, [1005] = {.lex_state = 33}, - [1006] = {.lex_state = 83}, + [1006] = {.lex_state = 33}, [1007] = {.lex_state = 33}, [1008] = {.lex_state = 33}, [1009] = {.lex_state = 83}, [1010] = {.lex_state = 33}, - [1011] = {.lex_state = 83}, + [1011] = {.lex_state = 33}, [1012] = {.lex_state = 33}, [1013] = {.lex_state = 33}, - [1014] = {.lex_state = 83}, + [1014] = {.lex_state = 33}, [1015] = {.lex_state = 83}, [1016] = {.lex_state = 83}, [1017] = {.lex_state = 83}, [1018] = {.lex_state = 33}, [1019] = {.lex_state = 33}, - [1020] = {.lex_state = 33}, + [1020] = {.lex_state = 83}, [1021] = {.lex_state = 33}, [1022] = {.lex_state = 33}, [1023] = {.lex_state = 33}, - [1024] = {.lex_state = 83}, - [1025] = {.lex_state = 33}, + [1024] = {.lex_state = 33}, + [1025] = {.lex_state = 83}, [1026] = {.lex_state = 33}, - [1027] = {.lex_state = 83}, - [1028] = {.lex_state = 33}, + [1027] = {.lex_state = 33}, + [1028] = {.lex_state = 83}, [1029] = {.lex_state = 33}, - [1030] = {.lex_state = 83}, + [1030] = {.lex_state = 33}, [1031] = {.lex_state = 33}, [1032] = {.lex_state = 33}, [1033] = {.lex_state = 33}, @@ -6428,22 +6428,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1035] = {.lex_state = 33}, [1036] = {.lex_state = 33}, [1037] = {.lex_state = 33}, - [1038] = {.lex_state = 83}, - [1039] = {.lex_state = 33}, - [1040] = {.lex_state = 33}, - [1041] = {.lex_state = 33}, + [1038] = {.lex_state = 33}, + [1039] = {.lex_state = 83}, + [1040] = {.lex_state = 83}, + [1041] = {.lex_state = 83}, [1042] = {.lex_state = 83}, [1043] = {.lex_state = 83}, [1044] = {.lex_state = 83}, - [1045] = {.lex_state = 33}, + [1045] = {.lex_state = 83}, [1046] = {.lex_state = 83}, [1047] = {.lex_state = 83}, [1048] = {.lex_state = 83}, - [1049] = {.lex_state = 83}, + [1049] = {.lex_state = 33}, [1050] = {.lex_state = 33}, - [1051] = {.lex_state = 83}, + [1051] = {.lex_state = 33}, [1052] = {.lex_state = 83}, - [1053] = {.lex_state = 35}, + [1053] = {.lex_state = 83}, [1054] = {.lex_state = 83}, [1055] = {.lex_state = 83}, [1056] = {.lex_state = 83}, @@ -6453,15 +6453,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1060] = {.lex_state = 83}, [1061] = {.lex_state = 83}, [1062] = {.lex_state = 35}, - [1063] = {.lex_state = 83}, + [1063] = {.lex_state = 35}, [1064] = {.lex_state = 35}, [1065] = {.lex_state = 83}, [1066] = {.lex_state = 83}, [1067] = {.lex_state = 83}, [1068] = {.lex_state = 83}, [1069] = {.lex_state = 83}, - [1070] = {.lex_state = 35}, - [1071] = {.lex_state = 83}, + [1070] = {.lex_state = 83}, + [1071] = {.lex_state = 35}, [1072] = {.lex_state = 83}, [1073] = {.lex_state = 83}, [1074] = {.lex_state = 83}, @@ -6501,174 +6501,174 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1108] = {.lex_state = 83}, [1109] = {.lex_state = 83}, [1110] = {.lex_state = 28}, - [1111] = {.lex_state = 33}, + [1111] = {.lex_state = 83}, [1112] = {.lex_state = 33}, [1113] = {.lex_state = 83}, - [1114] = {.lex_state = 83}, + [1114] = {.lex_state = 33}, [1115] = {.lex_state = 22}, [1116] = {.lex_state = 83}, [1117] = {.lex_state = 22}, - [1118] = {.lex_state = 83}, - [1119] = {.lex_state = 24}, + [1118] = {.lex_state = 24}, + [1119] = {.lex_state = 83}, [1120] = {.lex_state = 83}, [1121] = {.lex_state = 83}, [1122] = {.lex_state = 24}, [1123] = {.lex_state = 83}, - [1124] = {.lex_state = 22}, - [1125] = {.lex_state = 83}, - [1126] = {.lex_state = 28}, + [1124] = {.lex_state = 83}, + [1125] = {.lex_state = 28}, + [1126] = {.lex_state = 83}, [1127] = {.lex_state = 83}, [1128] = {.lex_state = 83}, [1129] = {.lex_state = 22}, [1130] = {.lex_state = 22}, [1131] = {.lex_state = 83}, - [1132] = {.lex_state = 24}, - [1133] = {.lex_state = 83}, + [1132] = {.lex_state = 22}, + [1133] = {.lex_state = 24}, [1134] = {.lex_state = 83}, - [1135] = {.lex_state = 83}, + [1135] = {.lex_state = 22}, [1136] = {.lex_state = 83}, [1137] = {.lex_state = 24}, [1138] = {.lex_state = 83}, - [1139] = {.lex_state = 24}, + [1139] = {.lex_state = 83}, [1140] = {.lex_state = 24}, [1141] = {.lex_state = 83}, [1142] = {.lex_state = 83}, - [1143] = {.lex_state = 83}, + [1143] = {.lex_state = 24}, [1144] = {.lex_state = 83}, [1145] = {.lex_state = 24}, [1146] = {.lex_state = 33}, - [1147] = {.lex_state = 22}, + [1147] = {.lex_state = 83}, [1148] = {.lex_state = 22}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, [1151] = {.lex_state = 28}, [1152] = {.lex_state = 0}, [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 33}, + [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, + [1156] = {.lex_state = 33}, [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 33}, + [1158] = {.lex_state = 0}, [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 17}, - [1161] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 33}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 17}, + [1163] = {.lex_state = 19}, [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 28}, + [1165] = {.lex_state = 19}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 17}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 28}, - [1170] = {.lex_state = 33}, - [1171] = {.lex_state = 33}, - [1172] = {.lex_state = 0}, + [1167] = {.lex_state = 0}, + [1168] = {.lex_state = 28}, + [1169] = {.lex_state = 0}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 19}, + [1172] = {.lex_state = 28}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 0}, + [1174] = {.lex_state = 33}, + [1175] = {.lex_state = 33}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 17}, - [1179] = {.lex_state = 33}, - [1180] = {.lex_state = 28}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 19}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 0}, + [1183] = {.lex_state = 28}, [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, + [1185] = {.lex_state = 83}, [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 83}, + [1190] = {.lex_state = 33}, + [1191] = {.lex_state = 0}, [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 28}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 33}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 33}, + [1195] = {.lex_state = 28}, [1196] = {.lex_state = 28}, [1197] = {.lex_state = 0}, [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 83}, + [1200] = {.lex_state = 0}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, + [1203] = {.lex_state = 28}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 28}, + [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, + [1207] = {.lex_state = 83}, [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 33}, - [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 83}, + [1209] = {.lex_state = 23}, + [1210] = {.lex_state = 83}, + [1211] = {.lex_state = 0}, [1212] = {.lex_state = 23}, - [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 28}, + [1213] = {.lex_state = 23}, + [1214] = {.lex_state = 33}, + [1215] = {.lex_state = 23}, [1216] = {.lex_state = 83}, - [1217] = {.lex_state = 33}, + [1217] = {.lex_state = 0}, [1218] = {.lex_state = 83}, - [1219] = {.lex_state = 26}, - [1220] = {.lex_state = 23}, - [1221] = {.lex_state = 33}, - [1222] = {.lex_state = 83}, - [1223] = {.lex_state = 28}, - [1224] = {.lex_state = 83}, - [1225] = {.lex_state = 23}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 83}, + [1219] = {.lex_state = 33}, + [1220] = {.lex_state = 28}, + [1221] = {.lex_state = 83}, + [1222] = {.lex_state = 26}, + [1223] = {.lex_state = 23}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 83}, + [1226] = {.lex_state = 33}, + [1227] = {.lex_state = 83}, + [1228] = {.lex_state = 28}, [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 0}, + [1230] = {.lex_state = 83}, [1231] = {.lex_state = 23}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 83}, - [1234] = {.lex_state = 33}, - [1235] = {.lex_state = 23}, - [1236] = {.lex_state = 23}, - [1237] = {.lex_state = 23}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 83}, - [1241] = {.lex_state = 83}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 83}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 33}, + [1238] = {.lex_state = 83}, + [1239] = {.lex_state = 23}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 26}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 26}, + [1243] = {.lex_state = 23}, [1244] = {.lex_state = 83}, - [1245] = {.lex_state = 33}, - [1246] = {.lex_state = 83}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 33}, [1247] = {.lex_state = 23}, - [1248] = {.lex_state = 23}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 33}, - [1251] = {.lex_state = 33}, - [1252] = {.lex_state = 23}, - [1253] = {.lex_state = 83}, + [1248] = {.lex_state = 33}, + [1249] = {.lex_state = 83}, + [1250] = {.lex_state = 23}, + [1251] = {.lex_state = 23}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 23}, [1254] = {.lex_state = 23}, - [1255] = {.lex_state = 83}, - [1256] = {.lex_state = 26}, - [1257] = {.lex_state = 83}, - [1258] = {.lex_state = 23}, - [1259] = {.lex_state = 23}, - [1260] = {.lex_state = 83}, + [1255] = {.lex_state = 23}, + [1256] = {.lex_state = 33}, + [1257] = {.lex_state = 26}, + [1258] = {.lex_state = 83}, + [1259] = {.lex_state = 83}, + [1260] = {.lex_state = 0}, [1261] = {.lex_state = 23}, - [1262] = {.lex_state = 83}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 28}, + [1262] = {.lex_state = 23}, + [1263] = {.lex_state = 28}, + [1264] = {.lex_state = 83}, [1265] = {.lex_state = 83}, - [1266] = {.lex_state = 33}, + [1266] = {.lex_state = 83}, [1267] = {.lex_state = 83}, - [1268] = {.lex_state = 23}, - [1269] = {.lex_state = 23}, + [1268] = {.lex_state = 33}, + [1269] = {.lex_state = 83}, [1270] = {.lex_state = 23}, - [1271] = {.lex_state = 17}, + [1271] = {.lex_state = 33}, [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 0}, + [1274] = {.lex_state = 27}, [1275] = {.lex_state = 0}, [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 33}, - [1278] = {.lex_state = 0}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 33}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, [1281] = {.lex_state = 0}, @@ -6676,174 +6676,186 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1283] = {.lex_state = 0}, [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 83}, + [1286] = {.lex_state = 0}, [1287] = {.lex_state = 27}, - [1288] = {.lex_state = 17}, - [1289] = {.lex_state = 17}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 17}, - [1292] = {.lex_state = 27}, - [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 17}, - [1295] = {.lex_state = 17}, - [1296] = {.lex_state = 27}, - [1297] = {.lex_state = 17}, - [1298] = {.lex_state = 17}, - [1299] = {.lex_state = 17}, - [1300] = {.lex_state = 17}, - [1301] = {.lex_state = 27}, - [1302] = {.lex_state = 17}, - [1303] = {.lex_state = 17}, - [1304] = {.lex_state = 27}, - [1305] = {.lex_state = 33}, - [1306] = {.lex_state = 33}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 27}, + [1290] = {.lex_state = 27}, + [1291] = {.lex_state = 19}, + [1292] = {.lex_state = 19}, + [1293] = {.lex_state = 27}, + [1294] = {.lex_state = 19}, + [1295] = {.lex_state = 19}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 19}, + [1298] = {.lex_state = 19}, + [1299] = {.lex_state = 27}, + [1300] = {.lex_state = 19}, + [1301] = {.lex_state = 19}, + [1302] = {.lex_state = 27}, + [1303] = {.lex_state = 19}, + [1304] = {.lex_state = 19}, + [1305] = {.lex_state = 0}, + [1306] = {.lex_state = 19}, [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 27}, - [1309] = {.lex_state = 17}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 33}, + [1308] = {.lex_state = 19}, + [1309] = {.lex_state = 33}, + [1310] = {.lex_state = 19}, + [1311] = {.lex_state = 27}, + [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 27}, - [1315] = {.lex_state = 0}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 33}, [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 17}, - [1318] = {.lex_state = 17}, - [1319] = {.lex_state = 17}, - [1320] = {.lex_state = 0}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 19}, + [1319] = {.lex_state = 19}, + [1320] = {.lex_state = 19}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 83}, + [1325] = {.lex_state = 0}, [1326] = {.lex_state = 0}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 27}, - [1330] = {.lex_state = 27}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 27}, + [1332] = {.lex_state = 83}, [1333] = {.lex_state = 0}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 33}, + [1336] = {.lex_state = 27}, [1337] = {.lex_state = 0}, [1338] = {.lex_state = 27}, [1339] = {.lex_state = 33}, - [1340] = {.lex_state = 0}, + [1340] = {.lex_state = 27}, [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 27}, + [1342] = {.lex_state = 33}, [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 27}, - [1345] = {.lex_state = 27}, - [1346] = {.lex_state = 27}, - [1347] = {.lex_state = 27}, - [1348] = {.lex_state = 27}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 0}, [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 17}, + [1350] = {.lex_state = 0}, [1351] = {.lex_state = 0}, [1352] = {.lex_state = 27}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 27}, - [1355] = {.lex_state = 33}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 27}, + [1353] = {.lex_state = 27}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 19}, + [1357] = {.lex_state = 27}, + [1358] = {.lex_state = 27}, + [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 17}, - [1363] = {.lex_state = 33}, - [1364] = {.lex_state = 27}, - [1365] = {.lex_state = 33}, - [1366] = {.lex_state = 33}, - [1367] = {.lex_state = 27}, + [1361] = {.lex_state = 33}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 27}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 19}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0}, + [1369] = {.lex_state = 33}, + [1370] = {.lex_state = 27}, + [1371] = {.lex_state = 33}, [1372] = {.lex_state = 33}, - [1373] = {.lex_state = 0}, + [1373] = {.lex_state = 27}, [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 27}, - [1377] = {.lex_state = 33}, - [1378] = {.lex_state = 0}, + [1375] = {.lex_state = 27}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 33}, [1379] = {.lex_state = 0}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 33}, - [1382] = {.lex_state = 27}, - [1383] = {.lex_state = 27}, + [1381] = {.lex_state = 0}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 33}, [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 27}, - [1388] = {.lex_state = 33}, - [1389] = {.lex_state = 17}, - [1390] = {.lex_state = 17}, - [1391] = {.lex_state = 33}, - [1392] = {.lex_state = 33}, + [1387] = {.lex_state = 33}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 27}, + [1392] = {.lex_state = 27}, [1393] = {.lex_state = 0}, [1394] = {.lex_state = 27}, - [1395] = {.lex_state = 33}, + [1395] = {.lex_state = 0}, [1396] = {.lex_state = 33}, [1397] = {.lex_state = 27}, [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 17}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, + [1399] = {.lex_state = 19}, + [1400] = {.lex_state = 33}, + [1401] = {.lex_state = 33}, + [1402] = {.lex_state = 27}, + [1403] = {.lex_state = 27}, + [1404] = {.lex_state = 33}, [1405] = {.lex_state = 33}, - [1406] = {.lex_state = 27}, + [1406] = {.lex_state = 19}, [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 33}, - [1410] = {.lex_state = 33}, - [1411] = {.lex_state = 33}, + [1409] = {.lex_state = 27}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 27}, [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 33}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 27}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 33}, + [1415] = {.lex_state = 0}, [1416] = {.lex_state = 27}, [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 17}, + [1418] = {.lex_state = 19}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 17}, + [1421] = {.lex_state = 33}, [1422] = {.lex_state = 33}, - [1423] = {.lex_state = 27}, - [1424] = {.lex_state = 17}, - [1425] = {.lex_state = 17}, + [1423] = {.lex_state = 33}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 33}, [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, + [1427] = {.lex_state = 27}, [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 17}, - [1431] = {.lex_state = 33}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 19}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 33}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 83}, - [1436] = {.lex_state = 83}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 83}, - [1439] = {.lex_state = 17}, + [1433] = {.lex_state = 27}, + [1434] = {.lex_state = 33}, + [1435] = {.lex_state = 27}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 19}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 27}, - [1442] = {.lex_state = 33}, - [1443] = {.lex_state = 0}, + [1441] = {.lex_state = 19}, + [1442] = {.lex_state = 19}, + [1443] = {.lex_state = 33}, [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 83}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 83}, - [1449] = {.lex_state = 83}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 83}, - [1452] = {.lex_state = 33}, + [1445] = {.lex_state = 33}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 83}, + [1448] = {.lex_state = 19}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 83}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 19}, [1453] = {.lex_state = 83}, + [1454] = {.lex_state = 33}, + [1455] = {.lex_state = 0}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 83}, + [1459] = {.lex_state = 0}, + [1460] = {.lex_state = 83}, + [1461] = {.lex_state = 83}, + [1462] = {.lex_state = 83}, + [1463] = {.lex_state = 83}, + [1464] = {.lex_state = 33}, + [1465] = {.lex_state = 83}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6971,68 +6983,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1428), - [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_declaration] = STATE(39), - [sym_type_definition] = STATE(39), + [sym_translation_unit] = STATE(1440), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(39), + [sym__declaration_specifiers] = STATE(1003), + [sym_linkage_specification] = STATE(38), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(39), + [sym_compound_statement] = STATE(38), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(846), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(844), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(39), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(38), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -7108,69 +7120,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [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(1441), - [sym_preproc_elif] = STATE(1441), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), + [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(1302), + [sym_preproc_elif] = STATE(1302), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(20), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(5), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(20), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(5), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(20), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(5), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7248,69 +7260,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [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(1387), - [sym_preproc_elif] = STATE(1387), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_call] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(1293), + [sym_preproc_elif] = STATE(1293), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(18), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(12), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(18), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(12), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym_attributed_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_case_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_goto_statement] = STATE(12), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(18), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(12), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7388,69 +7400,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [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(1383), - [sym_preproc_elif] = STATE(1383), - [sym_function_definition] = STATE(7), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(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(1394), + [sym_preproc_elif] = STATE(1394), + [sym_function_definition] = STATE(10), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(7), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(10), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(7), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(10), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(7), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(10), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(10), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7534,26 +7546,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1382), - [sym_preproc_elif] = STATE(1382), + [sym_preproc_else] = STATE(1289), + [sym_preproc_elif] = STATE(1289), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), + [sym_ms_call_modifier] = STATE(643), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -7567,30 +7579,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), + [sym_macro_type_specifier] = STATE(884), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7668,69 +7680,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [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(1329), - [sym_preproc_elif] = STATE(1329), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), + [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(1311), + [sym_preproc_elif] = STATE(1311), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(13), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(13), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(13), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7814,26 +7826,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1367), - [sym_preproc_elif] = STATE(1367), + [sym_preproc_else] = STATE(1427), + [sym_preproc_elif] = STATE(1427), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), + [sym_ms_call_modifier] = STATE(643), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -7847,30 +7859,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), + [sym_macro_type_specifier] = STATE(884), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -7948,69 +7960,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [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(1397), - [sym_preproc_elif] = STATE(1397), - [sym_function_definition] = STATE(5), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), + [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(1331), + [sym_preproc_elif] = STATE(1331), + [sym_function_definition] = STATE(13), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(5), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(13), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(5), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(13), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(5), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(13), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8094,26 +8106,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1314), - [sym_preproc_elif] = STATE(1314), + [sym_preproc_else] = STATE(1397), + [sym_preproc_elif] = STATE(1397), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), + [sym_ms_call_modifier] = STATE(643), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8127,30 +8139,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), + [sym_macro_type_specifier] = STATE(884), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8228,69 +8240,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1354), - [sym_preproc_elif] = STATE(1354), - [sym_function_definition] = STATE(12), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), + [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(1352), + [sym_preproc_elif] = STATE(1352), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(12), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(12), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(12), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8368,69 +8380,69 @@ 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(1359), - [sym_preproc_elif] = STATE(1359), - [sym_function_definition] = STATE(2), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), + [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(1411), + [sym_preproc_elif] = STATE(1411), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(2), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(9), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(2), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(9), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(2), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(9), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8514,26 +8526,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1376), - [sym_preproc_elif] = STATE(1376), + [sym_preproc_else] = STATE(1274), + [sym_preproc_elif] = STATE(1274), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), + [sym_ms_call_modifier] = STATE(643), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8547,30 +8559,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), + [sym_macro_type_specifier] = STATE(884), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8654,26 +8666,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1423), - [sym_preproc_elif] = STATE(1423), + [sym_preproc_else] = STATE(1402), + [sym_preproc_elif] = STATE(1402), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), + [sym_ms_call_modifier] = STATE(643), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8687,30 +8699,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), + [sym_macro_type_specifier] = STATE(884), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8794,26 +8806,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1287), - [sym_preproc_elif] = STATE(1287), + [sym_preproc_else] = STATE(1409), + [sym_preproc_elif] = STATE(1409), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), + [sym_ms_call_modifier] = STATE(643), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -8827,30 +8839,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), + [sym_macro_type_specifier] = STATE(884), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -8928,69 +8940,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1308), - [sym_preproc_elif] = STATE(1308), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), + [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(1391), + [sym_preproc_elif] = STATE(1391), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(17), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(7), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(17), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(7), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_case_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_goto_statement] = STATE(17), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(17), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(7), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9068,69 +9080,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1296), - [sym_preproc_elif] = STATE(1296), - [sym_function_definition] = STATE(14), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), + [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(1353), + [sym_preproc_elif] = STATE(1353), + [sym_function_definition] = STATE(6), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(14), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(6), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(14), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(6), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(14), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(6), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9208,69 +9220,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [17] = { - [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(1292), - [sym_preproc_elif] = STATE(1292), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), + [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(1403), + [sym_preproc_elif] = STATE(1403), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(20), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(19), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(20), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(19), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(20), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(19), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9348,69 +9360,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [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(1347), - [sym_preproc_elif] = STATE(1347), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1338), + [sym_preproc_elif] = STATE(1338), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(20), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(14), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(20), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(14), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(20), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(14), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9488,69 +9500,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [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(1348), - [sym_preproc_elif] = STATE(1348), - [sym_function_definition] = STATE(9), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), + [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(1375), + [sym_preproc_elif] = STATE(1375), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), - [sym_linkage_specification] = STATE(9), + [sym__declaration_specifiers] = STATE(1008), + [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), - [sym_compound_statement] = STATE(9), + [sym_ms_call_modifier] = STATE(643), + [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(9), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(91), [aux_sym_preproc_include_token1] = ACTIONS(93), [aux_sym_preproc_def_token1] = ACTIONS(95), @@ -9638,20 +9650,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1010), + [sym__declaration_specifiers] = STATE(1008), [sym_linkage_specification] = STATE(20), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(644), + [sym_ms_call_modifier] = STATE(643), [sym_compound_statement] = STATE(20), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(845), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(847), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -9665,30 +9677,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(882), + [sym_macro_type_specifier] = STATE(884), [aux_sym_translation_unit_repeat1] = STATE(20), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(176), [aux_sym_preproc_def_token1] = ACTIONS(179), @@ -9766,75 +9778,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [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_declaration] = STATE(41), - [sym_type_definition] = STATE(41), + [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_declaration] = STATE(26), + [sym_type_definition] = STATE(26), [sym__declaration_modifiers] = STATE(645), [sym__declaration_specifiers] = STATE(1004), - [sym_linkage_specification] = STATE(41), + [sym_linkage_specification] = STATE(26), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(41), + [sym_compound_statement] = STATE(26), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(844), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(41), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(26), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(311), - [sym_preproc_directive] = ACTIONS(313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -9842,9 +9853,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_SEMI] = ACTIONS(315), - [anon_sym_typedef] = ACTIONS(317), - [anon_sym_extern] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -9854,7 +9865,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(321), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -9902,74 +9914,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(31), + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(31), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(36), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -9977,9 +9989,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -9989,8 +10001,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(363), - [anon_sym_RBRACE] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10007,17 +10019,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10038,210 +10050,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), + [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_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(22), + [sym__declaration_specifiers] = STATE(1012), + [sym_linkage_specification] = STATE(23), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(22), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(23), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(22), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(23), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), - [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(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), - [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(363), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(347), + [aux_sym_preproc_include_token1] = ACTIONS(350), + [aux_sym_preproc_def_token1] = ACTIONS(353), + [aux_sym_preproc_if_token1] = ACTIONS(356), + [aux_sym_preproc_if_token2] = ACTIONS(185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(359), + [sym_preproc_directive] = ACTIONS(362), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(365), + [anon_sym_typedef] = ACTIONS(368), + [anon_sym_extern] = ACTIONS(371), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(217), + [anon_sym___declspec] = ACTIONS(220), + [anon_sym___cdecl] = ACTIONS(223), + [anon_sym___clrcall] = ACTIONS(223), + [anon_sym___stdcall] = ACTIONS(223), + [anon_sym___fastcall] = ACTIONS(223), + [anon_sym___thiscall] = ACTIONS(223), + [anon_sym___vectorcall] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(232), + [anon_sym_volatile] = ACTIONS(232), + [anon_sym_restrict] = ACTIONS(232), + [anon_sym__Atomic] = ACTIONS(232), + [anon_sym_signed] = ACTIONS(235), + [anon_sym_unsigned] = ACTIONS(235), + [anon_sym_long] = ACTIONS(235), + [anon_sym_short] = ACTIONS(235), + [sym_primitive_type] = ACTIONS(238), + [anon_sym_enum] = ACTIONS(241), + [anon_sym_struct] = ACTIONS(244), + [anon_sym_union] = ACTIONS(247), + [anon_sym_if] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(380), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(389), + [anon_sym_do] = ACTIONS(392), + [anon_sym_for] = ACTIONS(395), + [anon_sym_return] = ACTIONS(398), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(404), + [anon_sym_goto] = ACTIONS(407), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_sizeof] = ACTIONS(286), + [sym_number_literal] = ACTIONS(289), + [anon_sym_L_SQUOTE] = ACTIONS(292), + [anon_sym_u_SQUOTE] = ACTIONS(292), + [anon_sym_U_SQUOTE] = ACTIONS(292), + [anon_sym_u8_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_L_DQUOTE] = ACTIONS(295), + [anon_sym_u_DQUOTE] = ACTIONS(295), + [anon_sym_U_DQUOTE] = ACTIONS(295), + [anon_sym_u8_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_true] = ACTIONS(298), + [sym_false] = ACTIONS(298), + [sym_null] = ACTIONS(298), [sym_comment] = ACTIONS(3), }, [24] = { - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(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_declaration] = STATE(29), + [sym_type_definition] = STATE(29), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(29), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(31), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(29), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(29), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10249,9 +10261,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10261,8 +10273,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(363), - [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(410), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10279,17 +10291,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10310,74 +10322,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(31), + [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_declaration] = STATE(32), + [sym_type_definition] = STATE(32), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(32), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(31), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(32), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(32), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10385,9 +10397,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10397,8 +10409,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(363), - [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(412), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10415,17 +10427,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10446,75 +10458,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [26] = { - [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_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(645), [sym__declaration_specifiers] = STATE(1004), - [sym_linkage_specification] = STATE(21), + [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(21), + [sym_compound_statement] = STATE(36), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(844), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(21), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(301), [aux_sym_preproc_include_token1] = ACTIONS(303), [aux_sym_preproc_def_token1] = ACTIONS(305), [aux_sym_preproc_if_token1] = ACTIONS(307), - [aux_sym_preproc_if_token2] = ACTIONS(395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(311), - [sym_preproc_directive] = ACTIONS(313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10522,9 +10533,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_SEMI] = ACTIONS(315), - [anon_sym_typedef] = ACTIONS(317), - [anon_sym_extern] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10534,7 +10545,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(321), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(414), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10582,74 +10594,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [27] = { - [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_declaration] = STATE(28), - [sym_type_definition] = STATE(28), + [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_declaration] = STATE(34), + [sym_type_definition] = STATE(34), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(28), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(34), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(28), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(34), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(28), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(34), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10657,9 +10669,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10669,8 +10681,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(363), - [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(416), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10687,17 +10699,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10718,74 +10730,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [28] = { - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(31), + [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_declaration] = STATE(28), + [sym_type_definition] = STATE(28), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1003), + [sym_linkage_specification] = STATE(28), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(31), + [sym_ms_call_modifier] = STATE(641), + [sym_compound_statement] = STATE(28), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(844), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [aux_sym_preproc_include_token1] = ACTIONS(423), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [aux_sym_preproc_if_token1] = ACTIONS(429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(432), + [sym_preproc_directive] = ACTIONS(435), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_typedef] = ACTIONS(441), + [anon_sym_extern] = ACTIONS(444), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(217), + [anon_sym___declspec] = ACTIONS(220), + [anon_sym___cdecl] = ACTIONS(223), + [anon_sym___clrcall] = ACTIONS(223), + [anon_sym___stdcall] = ACTIONS(223), + [anon_sym___fastcall] = ACTIONS(223), + [anon_sym___thiscall] = ACTIONS(223), + [anon_sym___vectorcall] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(232), + [anon_sym_volatile] = ACTIONS(232), + [anon_sym_restrict] = ACTIONS(232), + [anon_sym__Atomic] = ACTIONS(232), + [anon_sym_signed] = ACTIONS(235), + [anon_sym_unsigned] = ACTIONS(235), + [anon_sym_long] = ACTIONS(235), + [anon_sym_short] = ACTIONS(235), + [sym_primitive_type] = ACTIONS(238), + [anon_sym_enum] = ACTIONS(241), + [anon_sym_struct] = ACTIONS(244), + [anon_sym_union] = ACTIONS(247), + [anon_sym_if] = ACTIONS(450), + [anon_sym_switch] = ACTIONS(453), + [anon_sym_case] = ACTIONS(456), + [anon_sym_default] = ACTIONS(459), + [anon_sym_while] = ACTIONS(462), + [anon_sym_do] = ACTIONS(465), + [anon_sym_for] = ACTIONS(468), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(477), + [anon_sym_goto] = ACTIONS(480), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_sizeof] = ACTIONS(286), + [sym_number_literal] = ACTIONS(289), + [anon_sym_L_SQUOTE] = ACTIONS(292), + [anon_sym_u_SQUOTE] = ACTIONS(292), + [anon_sym_U_SQUOTE] = ACTIONS(292), + [anon_sym_u8_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_L_DQUOTE] = ACTIONS(295), + [anon_sym_u_DQUOTE] = ACTIONS(295), + [anon_sym_U_DQUOTE] = ACTIONS(295), + [anon_sym_u8_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_true] = ACTIONS(298), + [sym_false] = ACTIONS(298), + [sym_null] = ACTIONS(298), + [sym_comment] = ACTIONS(3), + }, + [29] = { + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10793,9 +10941,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10805,8 +10953,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(363), - [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(483), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10823,17 +10971,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10853,75 +11001,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [29] = { - [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_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), + [30] = { + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(25), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(25), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(36), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(25), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -10929,9 +11077,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -10941,8 +11089,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(363), - [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(485), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -10959,17 +11107,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -10989,7 +11137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [30] = { + [31] = { [sym_preproc_include] = STATE(30), [sym_preproc_def] = STATE(30), [sym_preproc_function_def] = STATE(30), @@ -11000,20 +11148,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(30), [sym_type_definition] = STATE(30), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1008), + [sym__declaration_specifiers] = STATE(1004), [sym_linkage_specification] = STATE(30), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_call_modifier] = STATE(642), [sym_compound_statement] = STATE(30), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), [sym__type_specifier] = STATE(846), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(30), [sym_labeled_statement] = STATE(30), [sym_expression_statement] = STATE(30), @@ -11027,309 +11175,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(30), [sym_continue_statement] = STATE(30), [sym_goto_statement] = STATE(30), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(882), + [sym_macro_type_specifier] = STATE(884), [aux_sym_translation_unit_repeat1] = STATE(30), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [ts_builtin_sym_end] = ACTIONS(403), - [sym_identifier] = ACTIONS(405), - [aux_sym_preproc_include_token1] = ACTIONS(408), - [aux_sym_preproc_def_token1] = ACTIONS(411), - [aux_sym_preproc_if_token1] = ACTIONS(414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(417), - [aux_sym_preproc_ifdef_token2] = ACTIONS(417), - [sym_preproc_directive] = ACTIONS(420), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(423), - [anon_sym_typedef] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(429), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(217), - [anon_sym___declspec] = ACTIONS(220), - [anon_sym___cdecl] = ACTIONS(223), - [anon_sym___clrcall] = ACTIONS(223), - [anon_sym___stdcall] = ACTIONS(223), - [anon_sym___fastcall] = ACTIONS(223), - [anon_sym___thiscall] = ACTIONS(223), - [anon_sym___vectorcall] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(232), - [anon_sym_volatile] = ACTIONS(232), - [anon_sym_restrict] = ACTIONS(232), - [anon_sym__Atomic] = ACTIONS(232), - [anon_sym_signed] = ACTIONS(235), - [anon_sym_unsigned] = ACTIONS(235), - [anon_sym_long] = ACTIONS(235), - [anon_sym_short] = ACTIONS(235), - [sym_primitive_type] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(241), - [anon_sym_struct] = ACTIONS(244), - [anon_sym_union] = ACTIONS(247), - [anon_sym_if] = ACTIONS(435), - [anon_sym_switch] = ACTIONS(438), - [anon_sym_case] = ACTIONS(441), - [anon_sym_default] = ACTIONS(444), - [anon_sym_while] = ACTIONS(447), - [anon_sym_do] = ACTIONS(450), - [anon_sym_for] = ACTIONS(453), - [anon_sym_return] = ACTIONS(456), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(462), - [anon_sym_goto] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_sizeof] = ACTIONS(286), - [sym_number_literal] = ACTIONS(289), - [anon_sym_L_SQUOTE] = ACTIONS(292), - [anon_sym_u_SQUOTE] = ACTIONS(292), - [anon_sym_U_SQUOTE] = ACTIONS(292), - [anon_sym_u8_SQUOTE] = ACTIONS(292), - [anon_sym_SQUOTE] = ACTIONS(292), - [anon_sym_L_DQUOTE] = ACTIONS(295), - [anon_sym_u_DQUOTE] = ACTIONS(295), - [anon_sym_U_DQUOTE] = ACTIONS(295), - [anon_sym_u8_DQUOTE] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_true] = ACTIONS(298), - [sym_false] = ACTIONS(298), - [sym_null] = ACTIONS(298), - [sym_comment] = ACTIONS(3), - }, - [31] = { - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(645), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(645), - [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(468), - [aux_sym_preproc_include_token1] = ACTIONS(471), - [aux_sym_preproc_def_token1] = ACTIONS(474), - [aux_sym_preproc_if_token1] = ACTIONS(477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(480), - [sym_preproc_directive] = ACTIONS(483), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_typedef] = ACTIONS(489), - [anon_sym_extern] = ACTIONS(492), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(217), - [anon_sym___declspec] = ACTIONS(220), - [anon_sym___cdecl] = ACTIONS(223), - [anon_sym___clrcall] = ACTIONS(223), - [anon_sym___stdcall] = ACTIONS(223), - [anon_sym___fastcall] = ACTIONS(223), - [anon_sym___thiscall] = ACTIONS(223), - [anon_sym___vectorcall] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(232), - [anon_sym_volatile] = ACTIONS(232), - [anon_sym_restrict] = ACTIONS(232), - [anon_sym__Atomic] = ACTIONS(232), - [anon_sym_signed] = ACTIONS(235), - [anon_sym_unsigned] = ACTIONS(235), - [anon_sym_long] = ACTIONS(235), - [anon_sym_short] = ACTIONS(235), - [sym_primitive_type] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(241), - [anon_sym_struct] = ACTIONS(244), - [anon_sym_union] = ACTIONS(247), - [anon_sym_if] = ACTIONS(498), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_case] = ACTIONS(504), - [anon_sym_default] = ACTIONS(507), - [anon_sym_while] = ACTIONS(510), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(516), - [anon_sym_return] = ACTIONS(519), - [anon_sym_break] = ACTIONS(522), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_sizeof] = ACTIONS(286), - [sym_number_literal] = ACTIONS(289), - [anon_sym_L_SQUOTE] = ACTIONS(292), - [anon_sym_u_SQUOTE] = ACTIONS(292), - [anon_sym_U_SQUOTE] = ACTIONS(292), - [anon_sym_u8_SQUOTE] = ACTIONS(292), - [anon_sym_SQUOTE] = ACTIONS(292), - [anon_sym_L_DQUOTE] = ACTIONS(295), - [anon_sym_u_DQUOTE] = ACTIONS(295), - [anon_sym_U_DQUOTE] = ACTIONS(295), - [anon_sym_u8_DQUOTE] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_true] = ACTIONS(298), - [sym_false] = ACTIONS(298), - [sym_null] = ACTIONS(298), - [sym_comment] = ACTIONS(3), - }, - [32] = { - [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_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(645), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(645), - [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11337,9 +11213,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11349,8 +11225,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(363), - [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(487), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11367,17 +11243,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11397,75 +11273,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [33] = { - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(31), + [32] = { + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(31), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(36), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11473,9 +11349,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11485,8 +11361,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(363), - [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(489), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11503,17 +11379,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11533,75 +11409,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(31), + [33] = { + [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_declaration] = STATE(39), + [sym_type_definition] = STATE(39), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1012), + [sym_linkage_specification] = STATE(39), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(31), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(39), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(39), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(491), + [aux_sym_preproc_include_token1] = ACTIONS(493), + [aux_sym_preproc_def_token1] = ACTIONS(495), + [aux_sym_preproc_if_token1] = ACTIONS(497), + [aux_sym_preproc_if_token2] = ACTIONS(499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(501), + [aux_sym_preproc_ifdef_token2] = ACTIONS(501), + [sym_preproc_directive] = ACTIONS(503), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11609,9 +11486,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(509), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11621,8 +11498,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(363), - [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11639,17 +11515,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11669,75 +11545,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [35] = { - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(31), + [34] = { + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(31), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(36), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11745,9 +11621,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11757,8 +11633,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(363), - [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11775,17 +11651,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -11805,75 +11681,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [36] = { - [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_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), + [35] = { + [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_declaration] = STATE(42), + [sym_type_definition] = STATE(42), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(24), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(42), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(24), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(42), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(24), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(42), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11881,9 +11757,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11893,8 +11769,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(363), - [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -11911,25 +11787,25 @@ 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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), [anon_sym_SQUOTE] = ACTIONS(85), [anon_sym_L_DQUOTE] = ACTIONS(87), [anon_sym_u_DQUOTE] = ACTIONS(87), @@ -11941,75 +11817,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, + [36] = { + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(539), + [aux_sym_preproc_include_token1] = ACTIONS(542), + [aux_sym_preproc_def_token1] = ACTIONS(545), + [aux_sym_preproc_if_token1] = ACTIONS(548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(551), + [sym_preproc_directive] = ACTIONS(554), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_BANG] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(199), + [anon_sym_PLUS] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(202), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_typedef] = ACTIONS(560), + [anon_sym_extern] = ACTIONS(563), + [anon_sym___attribute__] = ACTIONS(214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(217), + [anon_sym___declspec] = ACTIONS(220), + [anon_sym___cdecl] = ACTIONS(223), + [anon_sym___clrcall] = ACTIONS(223), + [anon_sym___stdcall] = ACTIONS(223), + [anon_sym___fastcall] = ACTIONS(223), + [anon_sym___thiscall] = ACTIONS(223), + [anon_sym___vectorcall] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(232), + [anon_sym_volatile] = ACTIONS(232), + [anon_sym_restrict] = ACTIONS(232), + [anon_sym__Atomic] = ACTIONS(232), + [anon_sym_signed] = ACTIONS(235), + [anon_sym_unsigned] = ACTIONS(235), + [anon_sym_long] = ACTIONS(235), + [anon_sym_short] = ACTIONS(235), + [sym_primitive_type] = ACTIONS(238), + [anon_sym_enum] = ACTIONS(241), + [anon_sym_struct] = ACTIONS(244), + [anon_sym_union] = ACTIONS(247), + [anon_sym_if] = ACTIONS(569), + [anon_sym_switch] = ACTIONS(572), + [anon_sym_case] = ACTIONS(575), + [anon_sym_default] = ACTIONS(578), + [anon_sym_while] = ACTIONS(581), + [anon_sym_do] = ACTIONS(584), + [anon_sym_for] = ACTIONS(587), + [anon_sym_return] = ACTIONS(590), + [anon_sym_break] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_sizeof] = ACTIONS(286), + [sym_number_literal] = ACTIONS(289), + [anon_sym_L_SQUOTE] = ACTIONS(292), + [anon_sym_u_SQUOTE] = ACTIONS(292), + [anon_sym_U_SQUOTE] = ACTIONS(292), + [anon_sym_u8_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_L_DQUOTE] = ACTIONS(295), + [anon_sym_u_DQUOTE] = ACTIONS(295), + [anon_sym_U_DQUOTE] = ACTIONS(295), + [anon_sym_u8_DQUOTE] = ACTIONS(295), + [anon_sym_DQUOTE] = ACTIONS(295), + [sym_true] = ACTIONS(298), + [sym_false] = ACTIONS(298), + [sym_null] = ACTIONS(298), + [sym_comment] = ACTIONS(3), + }, [37] = { - [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_declaration] = STATE(35), - [sym_type_definition] = STATE(35), + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(35), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(35), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(36), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(35), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12017,9 +12029,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12029,8 +12041,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(363), - [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(602), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12047,17 +12059,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12078,74 +12090,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [38] = { - [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_declaration] = STATE(42), - [sym_type_definition] = STATE(42), + [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_declaration] = STATE(28), + [sym_type_definition] = STATE(28), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(42), + [sym__declaration_specifiers] = STATE(1003), + [sym_linkage_specification] = STATE(28), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(42), + [sym_ms_call_modifier] = STATE(641), + [sym_compound_statement] = STATE(28), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(844), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(42), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(28), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12153,9 +12166,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12165,8 +12178,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(363), - [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12183,17 +12195,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12214,75 +12226,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [39] = { - [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_declaration] = STATE(30), - [sym_type_definition] = STATE(30), + [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_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1008), - [sym_linkage_specification] = STATE(30), + [sym__declaration_specifiers] = STATE(1012), + [sym_linkage_specification] = STATE(23), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(30), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(23), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(846), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(845), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(30), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(23), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [ts_builtin_sym_end] = ACTIONS(545), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(491), + [aux_sym_preproc_include_token1] = ACTIONS(493), + [aux_sym_preproc_def_token1] = ACTIONS(495), + [aux_sym_preproc_if_token1] = ACTIONS(497), + [aux_sym_preproc_if_token2] = ACTIONS(606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(501), + [aux_sym_preproc_ifdef_token2] = ACTIONS(501), + [sym_preproc_directive] = ACTIONS(503), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12290,9 +12302,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_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(509), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12302,7 +12314,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(41), + [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12319,17 +12331,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(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_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12350,74 +12362,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [40] = { - [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_declaration] = STATE(33), - [sym_type_definition] = STATE(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_declaration] = STATE(37), + [sym_type_definition] = STATE(37), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(33), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(37), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(33), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(37), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(33), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(37), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12425,9 +12437,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12437,8 +12449,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(363), - [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(608), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -12455,17 +12467,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12486,210 +12498,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [41] = { - [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_declaration] = STATE(41), - [sym_type_definition] = STATE(41), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), [sym__declaration_modifiers] = STATE(645), [sym__declaration_specifiers] = STATE(1004), - [sym_linkage_specification] = STATE(41), + [sym_linkage_specification] = STATE(22), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(41), + [sym_compound_statement] = STATE(22), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(844), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(41), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(22), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(549), - [aux_sym_preproc_include_token1] = ACTIONS(552), - [aux_sym_preproc_def_token1] = ACTIONS(555), - [aux_sym_preproc_if_token1] = ACTIONS(558), - [aux_sym_preproc_if_token2] = ACTIONS(185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(561), - [sym_preproc_directive] = ACTIONS(564), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_AMP] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_typedef] = ACTIONS(570), - [anon_sym_extern] = ACTIONS(573), - [anon_sym___attribute__] = ACTIONS(214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(217), - [anon_sym___declspec] = ACTIONS(220), - [anon_sym___cdecl] = ACTIONS(223), - [anon_sym___clrcall] = ACTIONS(223), - [anon_sym___stdcall] = ACTIONS(223), - [anon_sym___fastcall] = ACTIONS(223), - [anon_sym___thiscall] = ACTIONS(223), - [anon_sym___vectorcall] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_static] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym_const] = ACTIONS(232), - [anon_sym_volatile] = ACTIONS(232), - [anon_sym_restrict] = ACTIONS(232), - [anon_sym__Atomic] = ACTIONS(232), - [anon_sym_signed] = ACTIONS(235), - [anon_sym_unsigned] = ACTIONS(235), - [anon_sym_long] = ACTIONS(235), - [anon_sym_short] = ACTIONS(235), - [sym_primitive_type] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(241), - [anon_sym_struct] = ACTIONS(244), - [anon_sym_union] = ACTIONS(247), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_case] = ACTIONS(585), - [anon_sym_default] = ACTIONS(588), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(594), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(600), - [anon_sym_break] = ACTIONS(603), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_goto] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_sizeof] = ACTIONS(286), - [sym_number_literal] = ACTIONS(289), - [anon_sym_L_SQUOTE] = ACTIONS(292), - [anon_sym_u_SQUOTE] = ACTIONS(292), - [anon_sym_U_SQUOTE] = ACTIONS(292), - [anon_sym_u8_SQUOTE] = ACTIONS(292), - [anon_sym_SQUOTE] = ACTIONS(292), - [anon_sym_L_DQUOTE] = ACTIONS(295), - [anon_sym_u_DQUOTE] = ACTIONS(295), - [anon_sym_U_DQUOTE] = ACTIONS(295), - [anon_sym_u8_DQUOTE] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [sym_true] = ACTIONS(298), - [sym_false] = ACTIONS(298), - [sym_null] = ACTIONS(298), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), + [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(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), + [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(319), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [42] = { - [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_declaration] = STATE(31), - [sym_type_definition] = STATE(31), + [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_declaration] = STATE(36), + [sym_type_definition] = STATE(36), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1001), - [sym_linkage_specification] = STATE(31), + [sym__declaration_specifiers] = STATE(1004), + [sym_linkage_specification] = STATE(36), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_ms_call_modifier] = STATE(640), - [sym_compound_statement] = STATE(31), + [sym_ms_call_modifier] = STATE(642), + [sym_compound_statement] = STATE(36), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(847), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(846), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_translation_unit_repeat1] = STATE(31), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_translation_unit_repeat1] = STATE(36), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(345), - [aux_sym_preproc_include_token1] = ACTIONS(347), - [aux_sym_preproc_def_token1] = ACTIONS(349), - [aux_sym_preproc_if_token1] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(353), - [sym_preproc_directive] = ACTIONS(355), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(301), + [aux_sym_preproc_include_token1] = ACTIONS(303), + [aux_sym_preproc_def_token1] = ACTIONS(305), + [aux_sym_preproc_if_token1] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(309), + [sym_preproc_directive] = ACTIONS(311), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12697,9 +12709,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), - [anon_sym_extern] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(317), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12709,7 +12721,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(363), + [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_RBRACE] = ACTIONS(612), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -12727,17 +12739,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(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -12758,56 +12770,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1007), + [sym__declaration_specifiers] = STATE(1006), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(46), + [sym_compound_statement] = STATE(45), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(46), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(616), [aux_sym_preproc_def_token1] = ACTIONS(616), @@ -12886,56 +12898,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1007), + [sym__declaration_specifiers] = STATE(1006), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(45), + [sym_compound_statement] = STATE(43), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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_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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(45), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(43), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(618), [aux_sym_preproc_def_token1] = ACTIONS(618), @@ -13017,18 +13029,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(45), [sym_type_definition] = STATE(45), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1007), + [sym__declaration_specifiers] = STATE(1006), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), [sym_compound_statement] = STATE(45), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(45), [sym_labeled_statement] = STATE(45), [sym_expression_statement] = STATE(45), @@ -13041,28 +13053,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(45), [sym_continue_statement] = STATE(45), [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(620), [aux_sym_preproc_include_token1] = ACTIONS(623), @@ -13142,56 +13154,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [46] = { - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1007), + [sym__declaration_specifiers] = STATE(1006), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(45), + [sym_compound_statement] = STATE(47), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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_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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(45), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(47), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(721), [aux_sym_preproc_def_token1] = ACTIONS(721), @@ -13270,56 +13282,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [47] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1007), + [sym__declaration_specifiers] = STATE(1006), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(44), + [sym_compound_statement] = STATE(45), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(44), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(614), [aux_sym_preproc_include_token1] = ACTIONS(723), [aux_sym_preproc_def_token1] = ACTIONS(723), @@ -13398,56 +13410,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [48] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1002), + [sym__declaration_specifiers] = STATE(1011), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(60), + [sym_compound_statement] = STATE(55), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(60), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(55), [ts_builtin_sym_end] = ACTIONS(725), [sym_identifier] = ACTIONS(727), [aux_sym_preproc_include_token1] = ACTIONS(618), @@ -13524,64 +13536,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [49] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1010), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(56), + [sym_compound_statement] = STATE(57), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(56), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(57), [sym_identifier] = ACTIONS(729), - [aux_sym_preproc_include_token1] = ACTIONS(723), - [aux_sym_preproc_def_token1] = ACTIONS(723), - [aux_sym_preproc_if_token1] = ACTIONS(723), - [aux_sym_preproc_if_token2] = ACTIONS(723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(723), - [sym_preproc_directive] = ACTIONS(723), + [aux_sym_preproc_include_token1] = ACTIONS(616), + [aux_sym_preproc_def_token1] = ACTIONS(616), + [aux_sym_preproc_if_token1] = ACTIONS(616), + [aux_sym_preproc_if_token2] = ACTIONS(616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(616), + [sym_preproc_directive] = ACTIONS(616), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13589,19 +13601,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(315), - [anon_sym_typedef] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(723), - [anon_sym___clrcall] = ACTIONS(723), - [anon_sym___stdcall] = ACTIONS(723), - [anon_sym___fastcall] = ACTIONS(723), - [anon_sym___thiscall] = ACTIONS(723), - [anon_sym___vectorcall] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym___cdecl] = ACTIONS(616), + [anon_sym___clrcall] = ACTIONS(616), + [anon_sym___stdcall] = ACTIONS(616), + [anon_sym___fastcall] = ACTIONS(616), + [anon_sym___thiscall] = ACTIONS(616), + [anon_sym___vectorcall] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13618,18 +13630,18 @@ 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(323), - [anon_sym_else] = ACTIONS(723), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(616), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13650,60 +13662,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [50] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1003), + [sym__declaration_specifiers] = STATE(1011), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(57), + [sym_compound_statement] = STATE(50), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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_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__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(731), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(731), + [sym_identifier] = ACTIONS(733), + [aux_sym_preproc_include_token1] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(623), + [aux_sym_preproc_if_token1] = ACTIONS(623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(623), + [sym_preproc_directive] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_typedef] = ACTIONS(739), + [anon_sym_extern] = ACTIONS(643), + [anon_sym___attribute__] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(649), + [anon_sym___declspec] = ACTIONS(652), + [anon_sym___cdecl] = ACTIONS(623), + [anon_sym___clrcall] = ACTIONS(623), + [anon_sym___stdcall] = ACTIONS(623), + [anon_sym___fastcall] = ACTIONS(623), + [anon_sym___thiscall] = ACTIONS(623), + [anon_sym___vectorcall] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_static] = ACTIONS(643), + [anon_sym_auto] = ACTIONS(643), + [anon_sym_register] = ACTIONS(643), + [anon_sym_inline] = ACTIONS(643), + [anon_sym_const] = ACTIONS(658), + [anon_sym_volatile] = ACTIONS(658), + [anon_sym_restrict] = ACTIONS(658), + [anon_sym__Atomic] = ACTIONS(658), + [anon_sym_signed] = ACTIONS(661), + [anon_sym_unsigned] = ACTIONS(661), + [anon_sym_long] = ACTIONS(661), + [anon_sym_short] = ACTIONS(661), + [sym_primitive_type] = ACTIONS(664), + [anon_sym_enum] = ACTIONS(667), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_union] = ACTIONS(673), + [anon_sym_if] = ACTIONS(745), + [anon_sym_else] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(748), + [anon_sym_case] = ACTIONS(623), + [anon_sym_default] = ACTIONS(623), + [anon_sym_while] = ACTIONS(751), + [anon_sym_do] = ACTIONS(754), + [anon_sym_for] = ACTIONS(757), + [anon_sym_return] = ACTIONS(760), + [anon_sym_break] = ACTIONS(763), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_goto] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_sizeof] = ACTIONS(706), + [sym_number_literal] = ACTIONS(709), + [anon_sym_L_SQUOTE] = ACTIONS(712), + [anon_sym_u_SQUOTE] = ACTIONS(712), + [anon_sym_U_SQUOTE] = ACTIONS(712), + [anon_sym_u8_SQUOTE] = ACTIONS(712), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_L_DQUOTE] = ACTIONS(715), + [anon_sym_u_DQUOTE] = ACTIONS(715), + [anon_sym_U_DQUOTE] = ACTIONS(715), + [anon_sym_u8_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_null] = ACTIONS(718), + [sym_comment] = ACTIONS(3), + }, + [51] = { + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1010), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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_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__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(729), [aux_sym_preproc_include_token1] = ACTIONS(618), [aux_sym_preproc_def_token1] = ACTIONS(618), [aux_sym_preproc_if_token1] = ACTIONS(618), + [aux_sym_preproc_if_token2] = ACTIONS(618), [aux_sym_preproc_ifdef_token1] = ACTIONS(618), [aux_sym_preproc_ifdef_token2] = ACTIONS(618), [sym_preproc_directive] = ACTIONS(618), @@ -13714,8 +13853,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -13726,8 +13865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(618), [anon_sym___thiscall] = ACTIONS(618), [anon_sym___vectorcall] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13744,18 +13882,18 @@ 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(367), + [anon_sym_if] = ACTIONS(513), [anon_sym_else] = ACTIONS(618), - [anon_sym_switch] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(515), [anon_sym_case] = ACTIONS(618), [anon_sym_default] = ACTIONS(618), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13775,62 +13913,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [51] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), + [52] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1002), + [sym__declaration_specifiers] = STATE(1010), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(60), + [sym_compound_statement] = STATE(56), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(733), - [sym_identifier] = ACTIONS(727), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(729), [aux_sym_preproc_include_token1] = ACTIONS(721), [aux_sym_preproc_def_token1] = ACTIONS(721), [aux_sym_preproc_if_token1] = ACTIONS(721), + [aux_sym_preproc_if_token2] = ACTIONS(721), [aux_sym_preproc_ifdef_token1] = ACTIONS(721), [aux_sym_preproc_ifdef_token2] = ACTIONS(721), [sym_preproc_directive] = ACTIONS(721), @@ -13841,8 +13979,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_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -13853,7 +13991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(721), [anon_sym___thiscall] = ACTIONS(721), [anon_sym___vectorcall] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13870,18 +14008,18 @@ 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_if] = ACTIONS(513), [anon_sym_else] = ACTIONS(721), - [anon_sym_switch] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(515), [anon_sym_case] = ACTIONS(721), [anon_sym_default] = ACTIONS(721), - [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_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -13901,65 +14039,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), + [53] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1002), + [sym__declaration_specifiers] = STATE(1011), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(48), + [sym_compound_statement] = STATE(54), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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_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__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(735), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(54), + [ts_builtin_sym_end] = ACTIONS(772), [sym_identifier] = ACTIONS(727), - [aux_sym_preproc_include_token1] = ACTIONS(723), - [aux_sym_preproc_def_token1] = ACTIONS(723), - [aux_sym_preproc_if_token1] = ACTIONS(723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(723), - [sym_preproc_directive] = ACTIONS(723), + [aux_sym_preproc_include_token1] = ACTIONS(721), + [aux_sym_preproc_def_token1] = ACTIONS(721), + [aux_sym_preproc_if_token1] = ACTIONS(721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(721), + [sym_preproc_directive] = ACTIONS(721), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13973,12 +14111,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(723), - [anon_sym___clrcall] = ACTIONS(723), - [anon_sym___stdcall] = ACTIONS(723), - [anon_sym___fastcall] = ACTIONS(723), - [anon_sym___thiscall] = ACTIONS(723), - [anon_sym___vectorcall] = ACTIONS(723), + [anon_sym___cdecl] = ACTIONS(721), + [anon_sym___clrcall] = ACTIONS(721), + [anon_sym___stdcall] = ACTIONS(721), + [anon_sym___fastcall] = ACTIONS(721), + [anon_sym___thiscall] = ACTIONS(721), + [anon_sym___vectorcall] = ACTIONS(721), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -13997,10 +14135,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(723), + [anon_sym_else] = ACTIONS(721), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), + [anon_sym_case] = ACTIONS(721), + [anon_sym_default] = ACTIONS(721), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -14027,65 +14165,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), + [54] = { + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1002), + [sym__declaration_specifiers] = STATE(1011), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(51), + [sym_compound_statement] = STATE(50), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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_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__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(737), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(774), [sym_identifier] = ACTIONS(727), - [aux_sym_preproc_include_token1] = ACTIONS(616), - [aux_sym_preproc_def_token1] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(616), - [sym_preproc_directive] = ACTIONS(616), + [aux_sym_preproc_include_token1] = ACTIONS(723), + [aux_sym_preproc_def_token1] = ACTIONS(723), + [aux_sym_preproc_if_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token2] = ACTIONS(723), + [sym_preproc_directive] = ACTIONS(723), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14099,12 +14237,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(616), - [anon_sym___clrcall] = ACTIONS(616), - [anon_sym___stdcall] = ACTIONS(616), - [anon_sym___fastcall] = ACTIONS(616), - [anon_sym___thiscall] = ACTIONS(616), - [anon_sym___vectorcall] = ACTIONS(616), + [anon_sym___cdecl] = ACTIONS(723), + [anon_sym___clrcall] = ACTIONS(723), + [anon_sym___stdcall] = ACTIONS(723), + [anon_sym___fastcall] = ACTIONS(723), + [anon_sym___thiscall] = ACTIONS(723), + [anon_sym___vectorcall] = ACTIONS(723), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -14123,10 +14261,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(616), + [anon_sym_else] = ACTIONS(723), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -14153,58 +14291,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), + [55] = { + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1003), + [sym__declaration_specifiers] = STATE(1011), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(58), + [sym_compound_statement] = STATE(50), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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_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__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(731), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(776), + [sym_identifier] = ACTIONS(727), [aux_sym_preproc_include_token1] = ACTIONS(616), [aux_sym_preproc_def_token1] = ACTIONS(616), [aux_sym_preproc_if_token1] = ACTIONS(616), @@ -14218,8 +14357,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -14230,8 +14369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(616), [anon_sym___thiscall] = ACTIONS(616), [anon_sym___vectorcall] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14248,18 +14386,18 @@ 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(367), + [anon_sym_if] = ACTIONS(57), [anon_sym_else] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(616), [anon_sym_default] = ACTIONS(616), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14279,65 +14417,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [55] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), + [56] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1010), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(59), + [sym_compound_statement] = STATE(57), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(59), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(57), [sym_identifier] = ACTIONS(729), - [aux_sym_preproc_include_token1] = ACTIONS(616), - [aux_sym_preproc_def_token1] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(616), - [aux_sym_preproc_if_token2] = ACTIONS(616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(616), - [sym_preproc_directive] = ACTIONS(616), + [aux_sym_preproc_include_token1] = ACTIONS(723), + [aux_sym_preproc_def_token1] = ACTIONS(723), + [aux_sym_preproc_if_token1] = ACTIONS(723), + [aux_sym_preproc_if_token2] = ACTIONS(723), + [aux_sym_preproc_ifdef_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token2] = ACTIONS(723), + [sym_preproc_directive] = ACTIONS(723), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14345,19 +14483,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(315), - [anon_sym_typedef] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(616), - [anon_sym___clrcall] = ACTIONS(616), - [anon_sym___stdcall] = ACTIONS(616), - [anon_sym___fastcall] = ACTIONS(616), - [anon_sym___thiscall] = ACTIONS(616), - [anon_sym___vectorcall] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym___cdecl] = ACTIONS(723), + [anon_sym___clrcall] = ACTIONS(723), + [anon_sym___stdcall] = ACTIONS(723), + [anon_sym___fastcall] = ACTIONS(723), + [anon_sym___thiscall] = ACTIONS(723), + [anon_sym___vectorcall] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14374,18 +14512,18 @@ 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(323), - [anon_sym_else] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(723), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14405,187 +14543,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), + [57] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1010), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(62), + [sym_compound_statement] = STATE(57), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(729), - [aux_sym_preproc_include_token1] = ACTIONS(618), - [aux_sym_preproc_def_token1] = ACTIONS(618), - [aux_sym_preproc_if_token1] = ACTIONS(618), - [aux_sym_preproc_if_token2] = ACTIONS(618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(618), - [sym_preproc_directive] = ACTIONS(618), - [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(315), - [anon_sym_typedef] = ACTIONS(317), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(618), - [anon_sym___clrcall] = ACTIONS(618), - [anon_sym___stdcall] = ACTIONS(618), - [anon_sym___fastcall] = ACTIONS(618), - [anon_sym___thiscall] = ACTIONS(618), - [anon_sym___vectorcall] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = 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(323), - [anon_sym_else] = ACTIONS(618), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [57] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1003), - [sym_attribute_specifier] = STATE(645), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(645), - [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(739), + [sym_identifier] = ACTIONS(778), [aux_sym_preproc_include_token1] = ACTIONS(623), [aux_sym_preproc_def_token1] = ACTIONS(623), [aux_sym_preproc_if_token1] = ACTIONS(623), + [aux_sym_preproc_if_token2] = ACTIONS(623), [aux_sym_preproc_ifdef_token1] = ACTIONS(623), [aux_sym_preproc_ifdef_token2] = ACTIONS(623), [sym_preproc_directive] = ACTIONS(623), @@ -14596,8 +14609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(631), [anon_sym_STAR] = ACTIONS(634), [anon_sym_AMP] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_typedef] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_typedef] = ACTIONS(784), [anon_sym_extern] = ACTIONS(643), [anon_sym___attribute__] = ACTIONS(646), [anon_sym_LBRACK_LBRACK] = ACTIONS(649), @@ -14608,8 +14621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(623), [anon_sym___thiscall] = ACTIONS(623), [anon_sym___vectorcall] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_LBRACE] = ACTIONS(787), [anon_sym_static] = ACTIONS(643), [anon_sym_auto] = ACTIONS(643), [anon_sym_register] = ACTIONS(643), @@ -14626,18 +14638,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(667), [anon_sym_struct] = ACTIONS(670), [anon_sym_union] = ACTIONS(673), - [anon_sym_if] = ACTIONS(753), + [anon_sym_if] = ACTIONS(790), [anon_sym_else] = ACTIONS(623), - [anon_sym_switch] = ACTIONS(756), + [anon_sym_switch] = ACTIONS(793), [anon_sym_case] = ACTIONS(623), [anon_sym_default] = ACTIONS(623), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(762), - [anon_sym_for] = ACTIONS(765), - [anon_sym_return] = ACTIONS(768), - [anon_sym_break] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_goto] = ACTIONS(777), + [anon_sym_while] = ACTIONS(796), + [anon_sym_do] = ACTIONS(799), + [anon_sym_for] = ACTIONS(802), + [anon_sym_return] = ACTIONS(805), + [anon_sym_break] = ACTIONS(808), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(814), [anon_sym_DASH_DASH] = ACTIONS(703), [anon_sym_PLUS_PLUS] = ACTIONS(703), [anon_sym_sizeof] = ACTIONS(706), @@ -14658,57 +14670,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [58] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1003), + [sym__declaration_specifiers] = STATE(1005), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(57), + [sym_compound_statement] = STATE(60), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(731), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(817), [aux_sym_preproc_include_token1] = ACTIONS(721), [aux_sym_preproc_def_token1] = ACTIONS(721), [aux_sym_preproc_if_token1] = ACTIONS(721), @@ -14722,8 +14734,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_SEMI] = ACTIONS(357), - [anon_sym_typedef] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -14734,8 +14746,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(721), [anon_sym___thiscall] = ACTIONS(721), [anon_sym___vectorcall] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(772), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14752,18 +14764,18 @@ 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(367), + [anon_sym_if] = ACTIONS(323), [anon_sym_else] = ACTIONS(721), - [anon_sym_switch] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(325), [anon_sym_case] = ACTIONS(721), [anon_sym_default] = ACTIONS(721), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -14784,21 +14796,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [59] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(645), + [sym__declaration_specifiers] = STATE(1005), + [sym_attribute_specifier] = STATE(645), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(645), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(645), + [sym_type_qualifier] = STATE(645), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(645), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(817), + [aux_sym_preproc_include_token1] = ACTIONS(618), + [aux_sym_preproc_def_token1] = ACTIONS(618), + [aux_sym_preproc_if_token1] = ACTIONS(618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(618), + [sym_preproc_directive] = ACTIONS(618), + [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(313), + [anon_sym_typedef] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(618), + [anon_sym___clrcall] = ACTIONS(618), + [anon_sym___stdcall] = ACTIONS(618), + [anon_sym___fastcall] = ACTIONS(618), + [anon_sym___thiscall] = ACTIONS(618), + [anon_sym___vectorcall] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = 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(323), + [anon_sym_else] = ACTIONS(618), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [60] = { [sym_declaration] = STATE(62), [sym_type_definition] = STATE(62), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1005), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), [sym_compound_statement] = STATE(62), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(62), [sym_labeled_statement] = STATE(62), [sym_expression_statement] = STATE(62), @@ -14811,37 +14949,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(62), [sym_continue_statement] = STATE(62), [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(729), - [aux_sym_preproc_include_token1] = ACTIONS(721), - [aux_sym_preproc_def_token1] = ACTIONS(721), - [aux_sym_preproc_if_token1] = ACTIONS(721), - [aux_sym_preproc_if_token2] = ACTIONS(721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(721), - [aux_sym_preproc_ifdef_token2] = ACTIONS(721), - [sym_preproc_directive] = ACTIONS(721), + [sym_identifier] = ACTIONS(817), + [aux_sym_preproc_include_token1] = ACTIONS(723), + [aux_sym_preproc_def_token1] = ACTIONS(723), + [aux_sym_preproc_if_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token1] = ACTIONS(723), + [aux_sym_preproc_ifdef_token2] = ACTIONS(723), + [sym_preproc_directive] = ACTIONS(723), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14849,19 +14986,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(315), - [anon_sym_typedef] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(721), - [anon_sym___clrcall] = ACTIONS(721), - [anon_sym___stdcall] = ACTIONS(721), - [anon_sym___fastcall] = ACTIONS(721), - [anon_sym___thiscall] = ACTIONS(721), - [anon_sym___vectorcall] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym___cdecl] = ACTIONS(723), + [anon_sym___clrcall] = ACTIONS(723), + [anon_sym___stdcall] = ACTIONS(723), + [anon_sym___fastcall] = ACTIONS(723), + [anon_sym___thiscall] = ACTIONS(723), + [anon_sym___vectorcall] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(774), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14879,10 +15017,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(323), - [anon_sym_else] = ACTIONS(721), + [anon_sym_else] = ACTIONS(723), [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(721), - [anon_sym_default] = ACTIONS(721), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), [anon_sym_while] = ACTIONS(331), [anon_sym_do] = ACTIONS(333), [anon_sym_for] = ACTIONS(335), @@ -14909,190 +15047,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1002), - [sym_attribute_specifier] = STATE(645), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(645), - [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(751), - [sym_identifier] = ACTIONS(780), - [aux_sym_preproc_include_token1] = ACTIONS(623), - [aux_sym_preproc_def_token1] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(623), - [sym_preproc_directive] = ACTIONS(623), - [anon_sym_LPAREN2] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(628), - [anon_sym_TILDE] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(783), - [anon_sym_typedef] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(643), - [anon_sym___attribute__] = ACTIONS(646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(649), - [anon_sym___declspec] = ACTIONS(652), - [anon_sym___cdecl] = ACTIONS(623), - [anon_sym___clrcall] = ACTIONS(623), - [anon_sym___stdcall] = ACTIONS(623), - [anon_sym___fastcall] = ACTIONS(623), - [anon_sym___thiscall] = ACTIONS(623), - [anon_sym___vectorcall] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_static] = ACTIONS(643), - [anon_sym_auto] = ACTIONS(643), - [anon_sym_register] = ACTIONS(643), - [anon_sym_inline] = ACTIONS(643), - [anon_sym_const] = ACTIONS(658), - [anon_sym_volatile] = ACTIONS(658), - [anon_sym_restrict] = ACTIONS(658), - [anon_sym__Atomic] = ACTIONS(658), - [anon_sym_signed] = ACTIONS(661), - [anon_sym_unsigned] = ACTIONS(661), - [anon_sym_long] = ACTIONS(661), - [anon_sym_short] = ACTIONS(661), - [sym_primitive_type] = ACTIONS(664), - [anon_sym_enum] = ACTIONS(667), - [anon_sym_struct] = ACTIONS(670), - [anon_sym_union] = ACTIONS(673), - [anon_sym_if] = ACTIONS(792), - [anon_sym_else] = ACTIONS(623), - [anon_sym_switch] = ACTIONS(795), - [anon_sym_case] = ACTIONS(623), - [anon_sym_default] = ACTIONS(623), - [anon_sym_while] = ACTIONS(798), - [anon_sym_do] = ACTIONS(801), - [anon_sym_for] = ACTIONS(804), - [anon_sym_return] = ACTIONS(807), - [anon_sym_break] = ACTIONS(810), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_goto] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(703), - [anon_sym_PLUS_PLUS] = ACTIONS(703), - [anon_sym_sizeof] = ACTIONS(706), - [sym_number_literal] = ACTIONS(709), - [anon_sym_L_SQUOTE] = ACTIONS(712), - [anon_sym_u_SQUOTE] = ACTIONS(712), - [anon_sym_U_SQUOTE] = ACTIONS(712), - [anon_sym_u8_SQUOTE] = ACTIONS(712), - [anon_sym_SQUOTE] = ACTIONS(712), - [anon_sym_L_DQUOTE] = ACTIONS(715), - [anon_sym_u_DQUOTE] = ACTIONS(715), - [anon_sym_U_DQUOTE] = ACTIONS(715), - [anon_sym_u8_DQUOTE] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [sym_true] = ACTIONS(718), - [sym_false] = ACTIONS(718), - [sym_null] = ACTIONS(718), - [sym_comment] = ACTIONS(3), - }, [61] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1003), + [sym__declaration_specifiers] = STATE(1005), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), - [sym_compound_statement] = STATE(50), + [sym_compound_statement] = STATE(62), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [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_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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(731), - [aux_sym_preproc_include_token1] = ACTIONS(723), - [aux_sym_preproc_def_token1] = ACTIONS(723), - [aux_sym_preproc_if_token1] = ACTIONS(723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(723), - [sym_preproc_directive] = ACTIONS(723), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(817), + [aux_sym_preproc_include_token1] = ACTIONS(616), + [aux_sym_preproc_def_token1] = ACTIONS(616), + [aux_sym_preproc_if_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(616), + [sym_preproc_directive] = ACTIONS(616), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15100,20 +15112,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(357), - [anon_sym_typedef] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_typedef] = ACTIONS(315), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(723), - [anon_sym___clrcall] = ACTIONS(723), - [anon_sym___stdcall] = ACTIONS(723), - [anon_sym___fastcall] = ACTIONS(723), - [anon_sym___thiscall] = ACTIONS(723), - [anon_sym___vectorcall] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym___cdecl] = ACTIONS(616), + [anon_sym___clrcall] = ACTIONS(616), + [anon_sym___stdcall] = ACTIONS(616), + [anon_sym___fastcall] = ACTIONS(616), + [anon_sym___thiscall] = ACTIONS(616), + [anon_sym___vectorcall] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(776), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15130,18 +15142,18 @@ 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(367), - [anon_sym_else] = ACTIONS(723), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_if] = ACTIONS(323), + [anon_sym_else] = ACTIONS(616), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -15165,18 +15177,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration] = STATE(62), [sym_type_definition] = STATE(62), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1012), + [sym__declaration_specifiers] = STATE(1005), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(385), [sym_ms_declspec_modifier] = STATE(645), [sym_compound_statement] = STATE(62), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), [sym_attributed_statement] = STATE(62), [sym_labeled_statement] = STATE(62), [sym_expression_statement] = STATE(62), @@ -15189,34 +15201,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(62), [sym_continue_statement] = STATE(62), [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [aux_sym_case_statement_repeat1] = STATE(62), [sym_identifier] = ACTIONS(819), [aux_sym_preproc_include_token1] = ACTIONS(623), [aux_sym_preproc_def_token1] = ACTIONS(623), [aux_sym_preproc_if_token1] = ACTIONS(623), - [aux_sym_preproc_if_token2] = ACTIONS(623), [aux_sym_preproc_ifdef_token1] = ACTIONS(623), [aux_sym_preproc_ifdef_token2] = ACTIONS(623), [sym_preproc_directive] = ACTIONS(623), @@ -15240,6 +15251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(623), [anon_sym___vectorcall] = ACTIONS(623), [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(731), [anon_sym_static] = ACTIONS(643), [anon_sym_auto] = ACTIONS(643), [anon_sym_register] = ACTIONS(643), @@ -15288,40 +15300,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [63] = { - [sym_declaration] = STATE(496), + [sym_declaration] = STATE(473), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1002), + [sym__declaration_specifiers] = STATE(1011), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(645), [sym_ms_declspec_modifier] = STATE(645), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(731), - [sym_comma_expression] = STATE(1437), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(729), + [sym_comma_expression] = STATE(1367), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15371,40 +15383,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(489), + [sym_declaration] = STATE(446), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1002), + [sym__declaration_specifiers] = STATE(1011), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(645), [sym_ms_declspec_modifier] = STATE(645), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(726), - [sym_comma_expression] = STATE(1427), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(737), + [sym_comma_expression] = STATE(1439), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15454,40 +15466,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [65] = { - [sym_declaration] = STATE(476), + [sym_declaration] = STATE(479), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1002), + [sym__declaration_specifiers] = STATE(1011), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(645), [sym_ms_declspec_modifier] = STATE(645), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(734), - [sym_comma_expression] = STATE(1445), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1449), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15537,40 +15549,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(499), + [sym_declaration] = STATE(456), [sym__declaration_modifiers] = STATE(645), - [sym__declaration_specifiers] = STATE(1002), + [sym__declaration_specifiers] = STATE(1011), [sym_attribute_specifier] = STATE(645), [sym_attribute_declaration] = STATE(645), [sym_ms_declspec_modifier] = STATE(645), [sym_storage_class_specifier] = STATE(645), [sym_type_qualifier] = STATE(645), - [sym__type_specifier] = STATE(703), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(697), - [sym_comma_expression] = STATE(1361), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__type_specifier] = STATE(707), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(703), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), [aux_sym__declaration_specifiers_repeat1] = STATE(645), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_sized_type_specifier_repeat1] = STATE(758), [sym_identifier] = ACTIONS(858), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -15620,24 +15632,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [sym__expression] = STATE(533), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(555), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(555), - [sym_call_expression] = STATE(555), - [sym_field_expression] = STATE(555), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(555), - [sym_initializer_list] = STATE(532), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym__expression] = STATE(506), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(527), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(527), + [sym_call_expression] = STATE(527), + [sym_field_expression] = STATE(527), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(527), + [sym_initializer_list] = STATE(516), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym_identifier] = ACTIONS(870), [anon_sym_COMMA] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(872), @@ -15748,7 +15760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(890), [anon_sym_union] = ACTIONS(890), [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(894), + [anon_sym_else] = ACTIONS(890), [anon_sym_switch] = ACTIONS(890), [anon_sym_case] = ACTIONS(890), [anon_sym_default] = ACTIONS(890), @@ -15779,474 +15791,552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [69] = { - [sym_identifier] = ACTIONS(896), - [aux_sym_preproc_include_token1] = ACTIONS(896), - [aux_sym_preproc_def_token1] = ACTIONS(896), - [aux_sym_preproc_if_token1] = ACTIONS(896), - [aux_sym_preproc_if_token2] = ACTIONS(896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(896), - [aux_sym_preproc_else_token1] = ACTIONS(896), - [aux_sym_preproc_elif_token1] = ACTIONS(896), - [sym_preproc_directive] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_typedef] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), - [anon_sym___attribute__] = ACTIONS(896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(898), - [anon_sym___declspec] = ACTIONS(896), - [anon_sym___cdecl] = ACTIONS(896), - [anon_sym___clrcall] = ACTIONS(896), - [anon_sym___stdcall] = ACTIONS(896), - [anon_sym___fastcall] = ACTIONS(896), - [anon_sym___thiscall] = ACTIONS(896), - [anon_sym___vectorcall] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_static] = ACTIONS(896), - [anon_sym_auto] = ACTIONS(896), - [anon_sym_register] = ACTIONS(896), - [anon_sym_inline] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_volatile] = ACTIONS(896), - [anon_sym_restrict] = ACTIONS(896), - [anon_sym__Atomic] = ACTIONS(896), - [anon_sym_signed] = ACTIONS(896), - [anon_sym_unsigned] = ACTIONS(896), - [anon_sym_long] = ACTIONS(896), - [anon_sym_short] = ACTIONS(896), - [sym_primitive_type] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_union] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_case] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_goto] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_sizeof] = ACTIONS(896), - [sym_number_literal] = ACTIONS(898), - [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(898), - [anon_sym_u_DQUOTE] = ACTIONS(898), - [anon_sym_U_DQUOTE] = ACTIONS(898), - [anon_sym_u8_DQUOTE] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(898), - [sym_true] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_null] = ACTIONS(896), + [sym_identifier] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(894), + [aux_sym_preproc_if_token2] = ACTIONS(894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(894), + [aux_sym_preproc_else_token1] = ACTIONS(894), + [aux_sym_preproc_elif_token1] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(896), + [anon_sym___declspec] = ACTIONS(894), + [anon_sym___cdecl] = ACTIONS(894), + [anon_sym___clrcall] = ACTIONS(894), + [anon_sym___stdcall] = ACTIONS(894), + [anon_sym___fastcall] = ACTIONS(894), + [anon_sym___thiscall] = ACTIONS(894), + [anon_sym___vectorcall] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(896), + [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(896), + [anon_sym_u_DQUOTE] = ACTIONS(896), + [anon_sym_U_DQUOTE] = ACTIONS(896), + [anon_sym_u8_DQUOTE] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(896), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), [sym_comment] = ACTIONS(3), }, [70] = { - [sym_identifier] = ACTIONS(900), - [aux_sym_preproc_include_token1] = ACTIONS(900), - [aux_sym_preproc_def_token1] = ACTIONS(900), - [aux_sym_preproc_if_token1] = ACTIONS(900), - [aux_sym_preproc_if_token2] = ACTIONS(900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(900), - [aux_sym_preproc_else_token1] = ACTIONS(900), - [aux_sym_preproc_elif_token1] = ACTIONS(900), - [sym_preproc_directive] = ACTIONS(900), - [anon_sym_LPAREN2] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_TILDE] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_typedef] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym___attribute__] = ACTIONS(900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(902), - [anon_sym___declspec] = ACTIONS(900), - [anon_sym___cdecl] = ACTIONS(900), - [anon_sym___clrcall] = ACTIONS(900), - [anon_sym___stdcall] = ACTIONS(900), - [anon_sym___fastcall] = ACTIONS(900), - [anon_sym___thiscall] = ACTIONS(900), - [anon_sym___vectorcall] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(902), - [anon_sym_static] = ACTIONS(900), - [anon_sym_auto] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_inline] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [anon_sym_volatile] = ACTIONS(900), - [anon_sym_restrict] = ACTIONS(900), - [anon_sym__Atomic] = ACTIONS(900), - [anon_sym_signed] = ACTIONS(900), - [anon_sym_unsigned] = ACTIONS(900), - [anon_sym_long] = ACTIONS(900), - [anon_sym_short] = ACTIONS(900), - [sym_primitive_type] = ACTIONS(900), - [anon_sym_enum] = ACTIONS(900), - [anon_sym_struct] = ACTIONS(900), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(900), - [anon_sym_default] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_goto] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(900), - [sym_number_literal] = ACTIONS(902), - [anon_sym_L_SQUOTE] = ACTIONS(902), - [anon_sym_u_SQUOTE] = ACTIONS(902), - [anon_sym_U_SQUOTE] = ACTIONS(902), - [anon_sym_u8_SQUOTE] = ACTIONS(902), - [anon_sym_SQUOTE] = ACTIONS(902), - [anon_sym_L_DQUOTE] = ACTIONS(902), - [anon_sym_u_DQUOTE] = ACTIONS(902), - [anon_sym_U_DQUOTE] = ACTIONS(902), - [anon_sym_u8_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym_true] = ACTIONS(900), - [sym_false] = ACTIONS(900), - [sym_null] = ACTIONS(900), + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_if_token2] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [aux_sym_preproc_else_token1] = ACTIONS(898), + [aux_sym_preproc_elif_token1] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), [sym_comment] = ACTIONS(3), }, [71] = { - [sym_identifier] = ACTIONS(904), - [aux_sym_preproc_include_token1] = ACTIONS(904), - [aux_sym_preproc_def_token1] = ACTIONS(904), - [aux_sym_preproc_if_token1] = ACTIONS(904), - [aux_sym_preproc_if_token2] = ACTIONS(904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(904), - [aux_sym_preproc_else_token1] = ACTIONS(904), - [aux_sym_preproc_elif_token1] = ACTIONS(904), - [sym_preproc_directive] = ACTIONS(904), - [anon_sym_LPAREN2] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_typedef] = ACTIONS(904), - [anon_sym_extern] = ACTIONS(904), - [anon_sym___attribute__] = ACTIONS(904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(906), - [anon_sym___declspec] = ACTIONS(904), - [anon_sym___cdecl] = ACTIONS(904), - [anon_sym___clrcall] = ACTIONS(904), - [anon_sym___stdcall] = ACTIONS(904), - [anon_sym___fastcall] = ACTIONS(904), - [anon_sym___thiscall] = ACTIONS(904), - [anon_sym___vectorcall] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_static] = ACTIONS(904), - [anon_sym_auto] = ACTIONS(904), - [anon_sym_register] = ACTIONS(904), - [anon_sym_inline] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_volatile] = ACTIONS(904), - [anon_sym_restrict] = ACTIONS(904), - [anon_sym__Atomic] = ACTIONS(904), - [anon_sym_signed] = ACTIONS(904), - [anon_sym_unsigned] = ACTIONS(904), - [anon_sym_long] = ACTIONS(904), - [anon_sym_short] = ACTIONS(904), - [sym_primitive_type] = ACTIONS(904), - [anon_sym_enum] = ACTIONS(904), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_union] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_else] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(904), - [anon_sym_case] = ACTIONS(904), - [anon_sym_default] = ACTIONS(904), - [anon_sym_while] = ACTIONS(904), - [anon_sym_do] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_goto] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_L_SQUOTE] = ACTIONS(906), - [anon_sym_u_SQUOTE] = ACTIONS(906), - [anon_sym_U_SQUOTE] = ACTIONS(906), - [anon_sym_u8_SQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_L_DQUOTE] = ACTIONS(906), - [anon_sym_u_DQUOTE] = ACTIONS(906), - [anon_sym_U_DQUOTE] = ACTIONS(906), - [anon_sym_u8_DQUOTE] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [sym_null] = ACTIONS(904), + [sym_identifier] = ACTIONS(902), + [aux_sym_preproc_include_token1] = ACTIONS(902), + [aux_sym_preproc_def_token1] = ACTIONS(902), + [aux_sym_preproc_if_token1] = ACTIONS(902), + [aux_sym_preproc_if_token2] = ACTIONS(902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(902), + [aux_sym_preproc_else_token1] = ACTIONS(902), + [aux_sym_preproc_elif_token1] = ACTIONS(902), + [sym_preproc_directive] = ACTIONS(902), + [anon_sym_LPAREN2] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_typedef] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym___attribute__] = ACTIONS(902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(904), + [anon_sym___declspec] = ACTIONS(902), + [anon_sym___cdecl] = ACTIONS(902), + [anon_sym___clrcall] = ACTIONS(902), + [anon_sym___stdcall] = ACTIONS(902), + [anon_sym___fastcall] = ACTIONS(902), + [anon_sym___thiscall] = ACTIONS(902), + [anon_sym___vectorcall] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_static] = ACTIONS(902), + [anon_sym_auto] = ACTIONS(902), + [anon_sym_register] = ACTIONS(902), + [anon_sym_inline] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_restrict] = ACTIONS(902), + [anon_sym__Atomic] = ACTIONS(902), + [anon_sym_signed] = ACTIONS(902), + [anon_sym_unsigned] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [sym_primitive_type] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_goto] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_sizeof] = ACTIONS(902), + [sym_number_literal] = ACTIONS(904), + [anon_sym_L_SQUOTE] = ACTIONS(904), + [anon_sym_u_SQUOTE] = ACTIONS(904), + [anon_sym_U_SQUOTE] = ACTIONS(904), + [anon_sym_u8_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_L_DQUOTE] = ACTIONS(904), + [anon_sym_u_DQUOTE] = ACTIONS(904), + [anon_sym_U_DQUOTE] = ACTIONS(904), + [anon_sym_u8_DQUOTE] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(904), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), [sym_comment] = ACTIONS(3), }, [72] = { - [sym_identifier] = ACTIONS(908), - [aux_sym_preproc_include_token1] = ACTIONS(908), - [aux_sym_preproc_def_token1] = ACTIONS(908), - [aux_sym_preproc_if_token1] = ACTIONS(908), - [aux_sym_preproc_if_token2] = ACTIONS(908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(908), - [aux_sym_preproc_else_token1] = ACTIONS(908), - [aux_sym_preproc_elif_token1] = ACTIONS(908), - [sym_preproc_directive] = ACTIONS(908), - [anon_sym_LPAREN2] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(910), - [anon_sym_TILDE] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(910), - [anon_sym_SEMI] = ACTIONS(910), - [anon_sym_typedef] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym___attribute__] = ACTIONS(908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(910), - [anon_sym___declspec] = ACTIONS(908), - [anon_sym___cdecl] = ACTIONS(908), - [anon_sym___clrcall] = ACTIONS(908), - [anon_sym___stdcall] = ACTIONS(908), - [anon_sym___fastcall] = ACTIONS(908), - [anon_sym___thiscall] = ACTIONS(908), - [anon_sym___vectorcall] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_static] = ACTIONS(908), - [anon_sym_auto] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_inline] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_volatile] = ACTIONS(908), - [anon_sym_restrict] = ACTIONS(908), - [anon_sym__Atomic] = ACTIONS(908), - [anon_sym_signed] = ACTIONS(908), - [anon_sym_unsigned] = ACTIONS(908), - [anon_sym_long] = ACTIONS(908), - [anon_sym_short] = ACTIONS(908), - [sym_primitive_type] = ACTIONS(908), - [anon_sym_enum] = ACTIONS(908), - [anon_sym_struct] = ACTIONS(908), - [anon_sym_union] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_else] = ACTIONS(908), - [anon_sym_switch] = ACTIONS(908), - [anon_sym_case] = ACTIONS(908), - [anon_sym_default] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_goto] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(910), - [anon_sym_PLUS_PLUS] = ACTIONS(910), - [anon_sym_sizeof] = ACTIONS(908), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(910), - [anon_sym_u_SQUOTE] = ACTIONS(910), - [anon_sym_U_SQUOTE] = ACTIONS(910), - [anon_sym_u8_SQUOTE] = ACTIONS(910), - [anon_sym_SQUOTE] = ACTIONS(910), - [anon_sym_L_DQUOTE] = ACTIONS(910), - [anon_sym_u_DQUOTE] = ACTIONS(910), - [anon_sym_U_DQUOTE] = ACTIONS(910), - [anon_sym_u8_DQUOTE] = ACTIONS(910), - [anon_sym_DQUOTE] = ACTIONS(910), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_if_token2] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [aux_sym_preproc_else_token1] = ACTIONS(906), + [aux_sym_preproc_elif_token1] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, [73] = { - [sym_identifier] = ACTIONS(912), - [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), - [anon_sym_LPAREN2] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_typedef] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym___attribute__] = ACTIONS(912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(914), - [anon_sym___declspec] = ACTIONS(912), - [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(914), - [anon_sym_static] = ACTIONS(912), - [anon_sym_auto] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_inline] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_volatile] = ACTIONS(912), - [anon_sym_restrict] = ACTIONS(912), - [anon_sym__Atomic] = ACTIONS(912), - [anon_sym_signed] = ACTIONS(912), - [anon_sym_unsigned] = ACTIONS(912), - [anon_sym_long] = ACTIONS(912), - [anon_sym_short] = ACTIONS(912), - [sym_primitive_type] = ACTIONS(912), - [anon_sym_enum] = ACTIONS(912), - [anon_sym_struct] = ACTIONS(912), - [anon_sym_union] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_goto] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_sizeof] = ACTIONS(912), - [sym_number_literal] = ACTIONS(914), - [anon_sym_L_SQUOTE] = ACTIONS(914), - [anon_sym_u_SQUOTE] = ACTIONS(914), - [anon_sym_U_SQUOTE] = ACTIONS(914), - [anon_sym_u8_SQUOTE] = ACTIONS(914), - [anon_sym_SQUOTE] = ACTIONS(914), - [anon_sym_L_DQUOTE] = ACTIONS(914), - [anon_sym_u_DQUOTE] = ACTIONS(914), - [anon_sym_U_DQUOTE] = ACTIONS(914), - [anon_sym_u8_DQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [sym_null] = ACTIONS(912), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_if_token2] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [aux_sym_preproc_else_token1] = ACTIONS(910), + [aux_sym_preproc_elif_token1] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, [74] = { - [sym_identifier] = ACTIONS(916), - [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), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_typedef] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym___attribute__] = ACTIONS(916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(918), - [anon_sym___declspec] = ACTIONS(916), - [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(918), - [anon_sym_static] = ACTIONS(916), - [anon_sym_auto] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_inline] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [anon_sym_volatile] = ACTIONS(916), - [anon_sym_restrict] = ACTIONS(916), - [anon_sym__Atomic] = ACTIONS(916), - [anon_sym_signed] = ACTIONS(916), - [anon_sym_unsigned] = ACTIONS(916), - [anon_sym_long] = ACTIONS(916), - [anon_sym_short] = ACTIONS(916), - [sym_primitive_type] = ACTIONS(916), - [anon_sym_enum] = ACTIONS(916), - [anon_sym_struct] = ACTIONS(916), - [anon_sym_union] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(916), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_goto] = ACTIONS(916), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_sizeof] = ACTIONS(916), - [sym_number_literal] = ACTIONS(918), - [anon_sym_L_SQUOTE] = ACTIONS(918), - [anon_sym_u_SQUOTE] = ACTIONS(918), - [anon_sym_U_SQUOTE] = ACTIONS(918), - [anon_sym_u8_SQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(918), - [anon_sym_L_DQUOTE] = ACTIONS(918), - [anon_sym_u_DQUOTE] = ACTIONS(918), - [anon_sym_U_DQUOTE] = ACTIONS(918), - [anon_sym_u8_DQUOTE] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym_true] = ACTIONS(916), - [sym_false] = ACTIONS(916), - [sym_null] = ACTIONS(916), + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_if_token2] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [aux_sym_preproc_else_token1] = ACTIONS(890), + [aux_sym_preproc_elif_token1] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, [75] = { + [sym_identifier] = ACTIONS(914), + [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), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [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(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [76] = { [sym_identifier] = ACTIONS(920), [aux_sym_preproc_include_token1] = ACTIONS(920), [aux_sym_preproc_def_token1] = ACTIONS(920), @@ -16324,7 +16414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(920), [sym_comment] = ACTIONS(3), }, - [76] = { + [77] = { [sym_identifier] = ACTIONS(924), [aux_sym_preproc_include_token1] = ACTIONS(924), [aux_sym_preproc_def_token1] = ACTIONS(924), @@ -16402,7 +16492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(924), [sym_comment] = ACTIONS(3), }, - [77] = { + [78] = { [sym_identifier] = ACTIONS(928), [aux_sym_preproc_include_token1] = ACTIONS(928), [aux_sym_preproc_def_token1] = ACTIONS(928), @@ -16480,7 +16570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [78] = { + [79] = { [sym_identifier] = ACTIONS(932), [aux_sym_preproc_include_token1] = ACTIONS(932), [aux_sym_preproc_def_token1] = ACTIONS(932), @@ -16558,7 +16648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [79] = { + [80] = { [sym_identifier] = ACTIONS(936), [aux_sym_preproc_include_token1] = ACTIONS(936), [aux_sym_preproc_def_token1] = ACTIONS(936), @@ -16636,7 +16726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [80] = { + [81] = { [sym_identifier] = ACTIONS(940), [aux_sym_preproc_include_token1] = ACTIONS(940), [aux_sym_preproc_def_token1] = ACTIONS(940), @@ -16714,7 +16804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [81] = { + [82] = { [sym_identifier] = ACTIONS(944), [aux_sym_preproc_include_token1] = ACTIONS(944), [aux_sym_preproc_def_token1] = ACTIONS(944), @@ -16792,84 +16882,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [82] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [aux_sym_preproc_else_token1] = ACTIONS(940), - [aux_sym_preproc_elif_token1] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, [83] = { [sym_identifier] = ACTIONS(948), [aux_sym_preproc_include_token1] = ACTIONS(948), @@ -17027,6 +17039,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [85] = { + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_if_token2] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [aux_sym_preproc_else_token1] = ACTIONS(898), + [aux_sym_preproc_elif_token1] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), + [sym_comment] = ACTIONS(3), + }, + [86] = { [sym_identifier] = ACTIONS(956), [aux_sym_preproc_include_token1] = ACTIONS(956), [aux_sym_preproc_def_token1] = ACTIONS(956), @@ -17104,7 +17194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [86] = { + [87] = { [sym_identifier] = ACTIONS(960), [aux_sym_preproc_include_token1] = ACTIONS(960), [aux_sym_preproc_def_token1] = ACTIONS(960), @@ -17182,7 +17272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [87] = { + [88] = { [sym_identifier] = ACTIONS(964), [aux_sym_preproc_include_token1] = ACTIONS(964), [aux_sym_preproc_def_token1] = ACTIONS(964), @@ -17260,7 +17350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [88] = { + [89] = { [sym_identifier] = ACTIONS(968), [aux_sym_preproc_include_token1] = ACTIONS(968), [aux_sym_preproc_def_token1] = ACTIONS(968), @@ -17338,7 +17428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [89] = { + [90] = { [sym_identifier] = ACTIONS(972), [aux_sym_preproc_include_token1] = ACTIONS(972), [aux_sym_preproc_def_token1] = ACTIONS(972), @@ -17416,7 +17506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [90] = { + [91] = { [sym_identifier] = ACTIONS(976), [aux_sym_preproc_include_token1] = ACTIONS(976), [aux_sym_preproc_def_token1] = ACTIONS(976), @@ -17494,7 +17584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, - [91] = { + [92] = { [sym_identifier] = ACTIONS(980), [aux_sym_preproc_include_token1] = ACTIONS(980), [aux_sym_preproc_def_token1] = ACTIONS(980), @@ -17572,7 +17662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [92] = { + [93] = { [sym_identifier] = ACTIONS(984), [aux_sym_preproc_include_token1] = ACTIONS(984), [aux_sym_preproc_def_token1] = ACTIONS(984), @@ -17650,7 +17740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [93] = { + [94] = { [sym_identifier] = ACTIONS(988), [aux_sym_preproc_include_token1] = ACTIONS(988), [aux_sym_preproc_def_token1] = ACTIONS(988), @@ -17728,7 +17818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [94] = { + [95] = { [sym_identifier] = ACTIONS(992), [aux_sym_preproc_include_token1] = ACTIONS(992), [aux_sym_preproc_def_token1] = ACTIONS(992), @@ -17806,7 +17896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [95] = { + [96] = { [sym_identifier] = ACTIONS(996), [aux_sym_preproc_include_token1] = ACTIONS(996), [aux_sym_preproc_def_token1] = ACTIONS(996), @@ -17884,7 +17974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [96] = { + [97] = { [sym_identifier] = ACTIONS(1000), [aux_sym_preproc_include_token1] = ACTIONS(1000), [aux_sym_preproc_def_token1] = ACTIONS(1000), @@ -17962,7 +18052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [97] = { + [98] = { [sym_identifier] = ACTIONS(1004), [aux_sym_preproc_include_token1] = ACTIONS(1004), [aux_sym_preproc_def_token1] = ACTIONS(1004), @@ -18040,7 +18130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [98] = { + [99] = { [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), @@ -18118,84 +18208,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [99] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [aux_sym_preproc_else_token1] = ACTIONS(948), - [aux_sym_preproc_elif_token1] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, [100] = { [sym_identifier] = ACTIONS(1012), [aux_sym_preproc_include_token1] = ACTIONS(1012), @@ -18663,237 +18675,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [106] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token2] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [aux_sym_preproc_else_token1] = ACTIONS(1036), - [aux_sym_preproc_elif_token1] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), + [sym__expression] = STATE(630), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(527), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(527), + [sym_call_expression] = STATE(527), + [sym_field_expression] = STATE(527), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(527), + [sym_initializer_list] = STATE(516), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN2] = ACTIONS(1036), [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [107] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [aux_sym_preproc_else_token1] = ACTIONS(1040), - [aux_sym_preproc_elif_token1] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1038), [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(872), + [anon_sym_AMP_AMP] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_CARET] = ACTIONS(882), [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), - [sym_comment] = ACTIONS(3), - }, - [108] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [aux_sym_preproc_else_token1] = ACTIONS(1044), - [aux_sym_preproc_elif_token1] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(872), + [anon_sym_BANG_EQ] = ACTIONS(872), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(872), + [anon_sym_LT_EQ] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_STAR_EQ] = ACTIONS(872), + [anon_sym_SLASH_EQ] = ACTIONS(872), + [anon_sym_PERCENT_EQ] = ACTIONS(872), + [anon_sym_PLUS_EQ] = ACTIONS(872), + [anon_sym_DASH_EQ] = ACTIONS(872), + [anon_sym_LT_LT_EQ] = ACTIONS(872), + [anon_sym_GT_GT_EQ] = ACTIONS(872), + [anon_sym_AMP_EQ] = ACTIONS(872), + [anon_sym_CARET_EQ] = ACTIONS(872), + [anon_sym_PIPE_EQ] = ACTIONS(872), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_sizeof] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_DASH_GT] = ACTIONS(872), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [109] = { + [107] = { [sym_identifier] = ACTIONS(1048), [aux_sym_preproc_include_token1] = ACTIONS(1048), [aux_sym_preproc_def_token1] = ACTIONS(1048), @@ -18970,7 +18828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1048), [sym_comment] = ACTIONS(3), }, - [110] = { + [108] = { [sym_identifier] = ACTIONS(1052), [aux_sym_preproc_include_token1] = ACTIONS(1052), [aux_sym_preproc_def_token1] = ACTIONS(1052), @@ -19047,7 +18905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, - [111] = { + [109] = { [sym_identifier] = ACTIONS(1056), [aux_sym_preproc_include_token1] = ACTIONS(1056), [aux_sym_preproc_def_token1] = ACTIONS(1056), @@ -19124,7 +18982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [112] = { + [110] = { [sym_identifier] = ACTIONS(1060), [aux_sym_preproc_include_token1] = ACTIONS(1060), [aux_sym_preproc_def_token1] = ACTIONS(1060), @@ -19201,7 +19059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [113] = { + [111] = { [sym_identifier] = ACTIONS(1064), [aux_sym_preproc_include_token1] = ACTIONS(1064), [aux_sym_preproc_def_token1] = ACTIONS(1064), @@ -19278,7 +19136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, - [114] = { + [112] = { [sym_identifier] = ACTIONS(1068), [aux_sym_preproc_include_token1] = ACTIONS(1068), [aux_sym_preproc_def_token1] = ACTIONS(1068), @@ -19355,7 +19213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [115] = { + [113] = { [sym_identifier] = ACTIONS(1072), [aux_sym_preproc_include_token1] = ACTIONS(1072), [aux_sym_preproc_def_token1] = ACTIONS(1072), @@ -19432,7 +19290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [116] = { + [114] = { [sym_identifier] = ACTIONS(1076), [aux_sym_preproc_include_token1] = ACTIONS(1076), [aux_sym_preproc_def_token1] = ACTIONS(1076), @@ -19509,7 +19367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [117] = { + [115] = { [sym_identifier] = ACTIONS(1080), [aux_sym_preproc_include_token1] = ACTIONS(1080), [aux_sym_preproc_def_token1] = ACTIONS(1080), @@ -19586,7 +19444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [118] = { + [116] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), @@ -19663,81 +19521,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [119] = { - [sym__expression] = STATE(620), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(555), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(555), - [sym_call_expression] = STATE(555), - [sym_field_expression] = STATE(555), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(555), - [sym_initializer_list] = STATE(532), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN2] = ACTIONS(1088), + [117] = { + [sym_identifier] = ACTIONS(1088), + [aux_sym_preproc_include_token1] = ACTIONS(1088), + [aux_sym_preproc_def_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token2] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), + [aux_sym_preproc_else_token1] = ACTIONS(1088), + [aux_sym_preproc_elif_token1] = ACTIONS(1088), + [sym_preproc_directive] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1090), [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym___attribute__] = ACTIONS(1088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), + [anon_sym___declspec] = ACTIONS(1088), + [anon_sym___cdecl] = ACTIONS(1088), + [anon_sym___clrcall] = ACTIONS(1088), + [anon_sym___stdcall] = ACTIONS(1088), + [anon_sym___fastcall] = ACTIONS(1088), + [anon_sym___thiscall] = ACTIONS(1088), + [anon_sym___vectorcall] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_auto] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_restrict] = ACTIONS(1088), + [anon_sym__Atomic] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(1088), + [anon_sym_unsigned] = ACTIONS(1088), + [anon_sym_long] = ACTIONS(1088), + [anon_sym_short] = ACTIONS(1088), + [sym_primitive_type] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_goto] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_sizeof] = ACTIONS(1088), + [sym_number_literal] = ACTIONS(1090), + [anon_sym_L_SQUOTE] = ACTIONS(1090), + [anon_sym_u_SQUOTE] = ACTIONS(1090), + [anon_sym_U_SQUOTE] = ACTIONS(1090), + [anon_sym_u8_SQUOTE] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_L_DQUOTE] = ACTIONS(1090), + [anon_sym_u_DQUOTE] = ACTIONS(1090), + [anon_sym_U_DQUOTE] = ACTIONS(1090), + [anon_sym_u8_DQUOTE] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym_true] = ACTIONS(1088), + [sym_false] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + }, + [118] = { + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token2] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [aux_sym_preproc_else_token1] = ACTIONS(1092), + [aux_sym_preproc_elif_token1] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_PERCENT] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_CARET] = ACTIONS(882), [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_GT_EQ] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_RBRACK] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_QMARK] = ACTIONS(872), - [anon_sym_STAR_EQ] = ACTIONS(872), - [anon_sym_SLASH_EQ] = ACTIONS(872), - [anon_sym_PERCENT_EQ] = ACTIONS(872), - [anon_sym_PLUS_EQ] = ACTIONS(872), - [anon_sym_DASH_EQ] = ACTIONS(872), - [anon_sym_LT_LT_EQ] = ACTIONS(872), - [anon_sym_GT_GT_EQ] = ACTIONS(872), - [anon_sym_AMP_EQ] = ACTIONS(872), - [anon_sym_CARET_EQ] = ACTIONS(872), - [anon_sym_PIPE_EQ] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_sizeof] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(882), - [anon_sym_DASH_GT] = ACTIONS(872), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + }, + [119] = { + [sym_identifier] = ACTIONS(1096), + [aux_sym_preproc_include_token1] = ACTIONS(1096), + [aux_sym_preproc_def_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token2] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), + [aux_sym_preproc_else_token1] = ACTIONS(1096), + [aux_sym_preproc_elif_token1] = ACTIONS(1096), + [sym_preproc_directive] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym___attribute__] = ACTIONS(1096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), + [anon_sym___declspec] = ACTIONS(1096), + [anon_sym___cdecl] = ACTIONS(1096), + [anon_sym___clrcall] = ACTIONS(1096), + [anon_sym___stdcall] = ACTIONS(1096), + [anon_sym___fastcall] = ACTIONS(1096), + [anon_sym___thiscall] = ACTIONS(1096), + [anon_sym___vectorcall] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_auto] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(1096), + [anon_sym__Atomic] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [sym_primitive_type] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_goto] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_sizeof] = ACTIONS(1096), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_L_SQUOTE] = ACTIONS(1098), + [anon_sym_u_SQUOTE] = ACTIONS(1098), + [anon_sym_U_SQUOTE] = ACTIONS(1098), + [anon_sym_u8_SQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_L_DQUOTE] = ACTIONS(1098), + [anon_sym_u_DQUOTE] = ACTIONS(1098), + [anon_sym_U_DQUOTE] = ACTIONS(1098), + [anon_sym_u8_DQUOTE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, [120] = { @@ -20203,193 +20215,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [126] = { - [ts_builtin_sym_end] = ACTIONS(990), - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), + [sym_attribute_declaration] = STATE(242), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), + [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(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [127] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [128] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(1405), - [sym_attributed_statement] = STATE(1405), - [sym_labeled_statement] = STATE(1405), - [sym_expression_statement] = STATE(1405), - [sym_if_statement] = STATE(1405), - [sym_switch_statement] = STATE(1405), - [sym_case_statement] = STATE(1405), - [sym_while_statement] = STATE(1405), - [sym_do_statement] = STATE(1405), - [sym_for_statement] = STATE(1405), - [sym_return_statement] = STATE(1405), - [sym_break_statement] = STATE(1405), - [sym_continue_statement] = STATE(1405), - [sym_goto_statement] = STATE(1405), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(193), + [sym_attributed_statement] = STATE(193), + [sym_labeled_statement] = STATE(193), + [sym_expression_statement] = STATE(193), + [sym_if_statement] = STATE(193), + [sym_switch_statement] = STATE(193), + [sym_case_statement] = STATE(193), + [sym_while_statement] = STATE(193), + [sym_do_statement] = STATE(193), + [sym_for_statement] = STATE(193), + [sym_return_statement] = STATE(193), + [sym_break_statement] = STATE(193), + [sym_continue_statement] = STATE(193), + [sym_goto_statement] = STATE(193), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20430,41 +20366,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, + [128] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, [129] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(291), - [sym_attributed_statement] = STATE(291), - [sym_labeled_statement] = STATE(291), - [sym_expression_statement] = STATE(291), - [sym_if_statement] = STATE(291), - [sym_switch_statement] = STATE(291), - [sym_case_statement] = STATE(291), - [sym_while_statement] = STATE(291), - [sym_do_statement] = STATE(291), - [sym_for_statement] = STATE(291), - [sym_return_statement] = STATE(291), - [sym_break_statement] = STATE(291), - [sym_continue_statement] = STATE(291), - [sym_goto_statement] = STATE(291), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_if_token2] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), + [sym_comment] = ACTIONS(3), + }, + [130] = { + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_if_token2] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), + [sym_comment] = ACTIONS(3), + }, + [131] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(1454), + [sym_attributed_statement] = STATE(1454), + [sym_labeled_statement] = STATE(1454), + [sym_expression_statement] = STATE(1454), + [sym_if_statement] = STATE(1454), + [sym_switch_statement] = STATE(1454), + [sym_case_statement] = STATE(1454), + [sym_while_statement] = STATE(1454), + [sym_do_statement] = STATE(1454), + [sym_for_statement] = STATE(1454), + [sym_return_statement] = STATE(1454), + [sym_break_statement] = STATE(1454), + [sym_continue_statement] = STATE(1454), + [sym_goto_statement] = STATE(1454), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -20473,20 +20637,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(357), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20506,7 +20670,464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [130] = { + [132] = { + [ts_builtin_sym_end] = ACTIONS(930), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + }, + [133] = { + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_if_token2] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + }, + [134] = { + [sym_identifier] = ACTIONS(914), + [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), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [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(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [135] = { + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_if_token2] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [136] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(246), + [sym_attributed_statement] = STATE(246), + [sym_labeled_statement] = STATE(246), + [sym_expression_statement] = STATE(246), + [sym_if_statement] = STATE(246), + [sym_switch_statement] = STATE(246), + [sym_case_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_return_statement] = STATE(246), + [sym_break_statement] = STATE(246), + [sym_continue_statement] = STATE(246), + [sym_goto_statement] = STATE(246), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [137] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(174), + [sym_attributed_statement] = STATE(174), + [sym_labeled_statement] = STATE(174), + [sym_expression_statement] = STATE(174), + [sym_if_statement] = STATE(174), + [sym_switch_statement] = STATE(174), + [sym_case_statement] = STATE(174), + [sym_while_statement] = STATE(174), + [sym_do_statement] = STATE(174), + [sym_for_statement] = STATE(174), + [sym_return_statement] = STATE(174), + [sym_break_statement] = STATE(174), + [sym_continue_statement] = STATE(174), + [sym_goto_statement] = STATE(174), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [138] = { + [ts_builtin_sym_end] = ACTIONS(926), [sym_identifier] = ACTIONS(924), [aux_sym_preproc_include_token1] = ACTIONS(924), [aux_sym_preproc_def_token1] = ACTIONS(924), @@ -20534,7 +21155,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(924), [anon_sym___vectorcall] = ACTIONS(924), [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), [anon_sym_static] = ACTIONS(924), [anon_sym_auto] = ACTIONS(924), [anon_sym_register] = ACTIONS(924), @@ -20582,193 +21202,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(924), [sym_comment] = ACTIONS(3), }, - [131] = { - [sym_identifier] = ACTIONS(916), - [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), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_typedef] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym___attribute__] = ACTIONS(916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(918), - [anon_sym___declspec] = ACTIONS(916), - [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(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_static] = ACTIONS(916), - [anon_sym_auto] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_inline] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [anon_sym_volatile] = ACTIONS(916), - [anon_sym_restrict] = ACTIONS(916), - [anon_sym__Atomic] = ACTIONS(916), - [anon_sym_signed] = ACTIONS(916), - [anon_sym_unsigned] = ACTIONS(916), - [anon_sym_long] = ACTIONS(916), - [anon_sym_short] = ACTIONS(916), - [sym_primitive_type] = ACTIONS(916), - [anon_sym_enum] = ACTIONS(916), - [anon_sym_struct] = ACTIONS(916), - [anon_sym_union] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(916), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_goto] = ACTIONS(916), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_sizeof] = ACTIONS(916), - [sym_number_literal] = ACTIONS(918), - [anon_sym_L_SQUOTE] = ACTIONS(918), - [anon_sym_u_SQUOTE] = ACTIONS(918), - [anon_sym_U_SQUOTE] = ACTIONS(918), - [anon_sym_u8_SQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(918), - [anon_sym_L_DQUOTE] = ACTIONS(918), - [anon_sym_u_DQUOTE] = ACTIONS(918), - [anon_sym_U_DQUOTE] = ACTIONS(918), - [anon_sym_u8_DQUOTE] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym_true] = ACTIONS(916), - [sym_false] = ACTIONS(916), - [sym_null] = ACTIONS(916), - [sym_comment] = ACTIONS(3), - }, - [132] = { - [sym_identifier] = ACTIONS(912), - [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), - [anon_sym_LPAREN2] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_typedef] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym___attribute__] = ACTIONS(912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(914), - [anon_sym___declspec] = ACTIONS(912), - [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(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_static] = ACTIONS(912), - [anon_sym_auto] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_inline] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_volatile] = ACTIONS(912), - [anon_sym_restrict] = ACTIONS(912), - [anon_sym__Atomic] = ACTIONS(912), - [anon_sym_signed] = ACTIONS(912), - [anon_sym_unsigned] = ACTIONS(912), - [anon_sym_long] = ACTIONS(912), - [anon_sym_short] = ACTIONS(912), - [sym_primitive_type] = ACTIONS(912), - [anon_sym_enum] = ACTIONS(912), - [anon_sym_struct] = ACTIONS(912), - [anon_sym_union] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_goto] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_sizeof] = ACTIONS(912), - [sym_number_literal] = ACTIONS(914), - [anon_sym_L_SQUOTE] = ACTIONS(914), - [anon_sym_u_SQUOTE] = ACTIONS(914), - [anon_sym_U_SQUOTE] = ACTIONS(914), - [anon_sym_u8_SQUOTE] = ACTIONS(914), - [anon_sym_SQUOTE] = ACTIONS(914), - [anon_sym_L_DQUOTE] = ACTIONS(914), - [anon_sym_u_DQUOTE] = ACTIONS(914), - [anon_sym_U_DQUOTE] = ACTIONS(914), - [anon_sym_u8_DQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [sym_null] = ACTIONS(912), - [sym_comment] = ACTIONS(3), - }, - [133] = { - [sym_attribute_declaration] = STATE(139), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [139] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(1445), + [sym_attributed_statement] = STATE(1445), + [sym_labeled_statement] = STATE(1445), + [sym_expression_statement] = STATE(1445), + [sym_if_statement] = STATE(1445), + [sym_switch_statement] = STATE(1445), + [sym_case_statement] = STATE(1445), + [sym_while_statement] = STATE(1445), + [sym_do_statement] = STATE(1445), + [sym_for_statement] = STATE(1445), + [sym_return_statement] = STATE(1445), + [sym_break_statement] = STATE(1445), + [sym_continue_statement] = STATE(1445), + [sym_goto_statement] = STATE(1445), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -20777,82 +21245,6 @@ 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(357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [134] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(1442), - [sym_attributed_statement] = STATE(1442), - [sym_labeled_statement] = STATE(1442), - [sym_expression_statement] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_switch_statement] = STATE(1442), - [sym_case_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_do_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_return_statement] = STATE(1442), - [sym_break_statement] = STATE(1442), - [sym_continue_statement] = STATE(1442), - [sym_goto_statement] = STATE(1442), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), - [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(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), [anon_sym_LBRACE] = ACTIONS(41), @@ -20886,392 +21278,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [135] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(268), - [sym_attributed_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(1128), - [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(357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [136] = { - [sym_identifier] = ACTIONS(904), - [aux_sym_preproc_include_token1] = ACTIONS(904), - [aux_sym_preproc_def_token1] = ACTIONS(904), - [aux_sym_preproc_if_token1] = ACTIONS(904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(904), - [sym_preproc_directive] = ACTIONS(904), - [anon_sym_LPAREN2] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_typedef] = ACTIONS(904), - [anon_sym_extern] = ACTIONS(904), - [anon_sym___attribute__] = ACTIONS(904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(906), - [anon_sym___declspec] = ACTIONS(904), - [anon_sym___cdecl] = ACTIONS(904), - [anon_sym___clrcall] = ACTIONS(904), - [anon_sym___stdcall] = ACTIONS(904), - [anon_sym___fastcall] = ACTIONS(904), - [anon_sym___thiscall] = ACTIONS(904), - [anon_sym___vectorcall] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_static] = ACTIONS(904), - [anon_sym_auto] = ACTIONS(904), - [anon_sym_register] = ACTIONS(904), - [anon_sym_inline] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_volatile] = ACTIONS(904), - [anon_sym_restrict] = ACTIONS(904), - [anon_sym__Atomic] = ACTIONS(904), - [anon_sym_signed] = ACTIONS(904), - [anon_sym_unsigned] = ACTIONS(904), - [anon_sym_long] = ACTIONS(904), - [anon_sym_short] = ACTIONS(904), - [sym_primitive_type] = ACTIONS(904), - [anon_sym_enum] = ACTIONS(904), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_union] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_else] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(904), - [anon_sym_case] = ACTIONS(904), - [anon_sym_default] = ACTIONS(904), - [anon_sym_while] = ACTIONS(904), - [anon_sym_do] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_goto] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_L_SQUOTE] = ACTIONS(906), - [anon_sym_u_SQUOTE] = ACTIONS(906), - [anon_sym_U_SQUOTE] = ACTIONS(906), - [anon_sym_u8_SQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_L_DQUOTE] = ACTIONS(906), - [anon_sym_u_DQUOTE] = ACTIONS(906), - [anon_sym_U_DQUOTE] = ACTIONS(906), - [anon_sym_u8_DQUOTE] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [sym_null] = ACTIONS(904), - [sym_comment] = ACTIONS(3), - }, - [137] = { - [ts_builtin_sym_end] = ACTIONS(978), - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), - [sym_comment] = ACTIONS(3), - }, - [138] = { - [ts_builtin_sym_end] = ACTIONS(974), - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - }, - [139] = { - [sym_attribute_declaration] = STATE(241), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [140] = { + [sym_attribute_declaration] = STATE(140), + [sym_compound_statement] = STATE(141), + [sym_attributed_statement] = STATE(141), + [sym_labeled_statement] = STATE(141), + [sym_expression_statement] = STATE(141), + [sym_if_statement] = STATE(141), + [sym_switch_statement] = STATE(141), + [sym_case_statement] = STATE(141), + [sym_while_statement] = STATE(141), + [sym_do_statement] = STATE(141), + [sym_for_statement] = STATE(141), + [sym_return_statement] = STATE(141), + [sym_break_statement] = STATE(141), + [sym_continue_statement] = STATE(141), + [sym_goto_statement] = STATE(141), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(1128), - [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(357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1192), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [140] = { - [ts_builtin_sym_end] = ACTIONS(946), + [141] = { [sym_identifier] = ACTIONS(944), [aux_sym_preproc_include_token1] = ACTIONS(944), [aux_sym_preproc_def_token1] = ACTIONS(944), [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(944), [aux_sym_preproc_ifdef_token1] = ACTIONS(944), [aux_sym_preproc_ifdef_token2] = ACTIONS(944), [sym_preproc_directive] = ACTIONS(944), @@ -21342,42 +21430,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [141] = { - [sym_attribute_declaration] = STATE(139), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [142] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [ts_builtin_sym_end] = ACTIONS(938), + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(191), + [sym_attributed_statement] = STATE(191), + [sym_labeled_statement] = STATE(191), + [sym_expression_statement] = STATE(191), + [sym_if_statement] = STATE(191), + [sym_switch_statement] = STATE(191), + [sym_case_statement] = STATE(191), + [sym_while_statement] = STATE(191), + [sym_do_statement] = STATE(191), + [sym_for_statement] = STATE(191), + [sym_return_statement] = STATE(191), + [sym_break_statement] = STATE(191), + [sym_continue_statement] = STATE(191), + [sym_goto_statement] = STATE(191), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(1128), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21385,20 +21625,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(357), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21418,194 +21658,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [142] = { - [sym_identifier] = ACTIONS(900), - [aux_sym_preproc_include_token1] = ACTIONS(900), - [aux_sym_preproc_def_token1] = ACTIONS(900), - [aux_sym_preproc_if_token1] = ACTIONS(900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(900), - [sym_preproc_directive] = ACTIONS(900), - [anon_sym_LPAREN2] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_TILDE] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_typedef] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym___attribute__] = ACTIONS(900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(902), - [anon_sym___declspec] = ACTIONS(900), - [anon_sym___cdecl] = ACTIONS(900), - [anon_sym___clrcall] = ACTIONS(900), - [anon_sym___stdcall] = ACTIONS(900), - [anon_sym___fastcall] = ACTIONS(900), - [anon_sym___thiscall] = ACTIONS(900), - [anon_sym___vectorcall] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_static] = ACTIONS(900), - [anon_sym_auto] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_inline] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [anon_sym_volatile] = ACTIONS(900), - [anon_sym_restrict] = ACTIONS(900), - [anon_sym__Atomic] = ACTIONS(900), - [anon_sym_signed] = ACTIONS(900), - [anon_sym_unsigned] = ACTIONS(900), - [anon_sym_long] = ACTIONS(900), - [anon_sym_short] = ACTIONS(900), - [sym_primitive_type] = ACTIONS(900), - [anon_sym_enum] = ACTIONS(900), - [anon_sym_struct] = ACTIONS(900), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(900), - [anon_sym_default] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_goto] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(900), - [sym_number_literal] = ACTIONS(902), - [anon_sym_L_SQUOTE] = ACTIONS(902), - [anon_sym_u_SQUOTE] = ACTIONS(902), - [anon_sym_U_SQUOTE] = ACTIONS(902), - [anon_sym_u8_SQUOTE] = ACTIONS(902), - [anon_sym_SQUOTE] = ACTIONS(902), - [anon_sym_L_DQUOTE] = ACTIONS(902), - [anon_sym_u_DQUOTE] = ACTIONS(902), - [anon_sym_U_DQUOTE] = ACTIONS(902), - [anon_sym_u8_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym_true] = ACTIONS(900), - [sym_false] = ACTIONS(900), - [sym_null] = ACTIONS(900), + [145] = { + [ts_builtin_sym_end] = ACTIONS(934), + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [143] = { - [ts_builtin_sym_end] = ACTIONS(962), - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), + [146] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [144] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [147] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token2] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [148] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(130), + [sym_attributed_statement] = STATE(130), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_case_statement] = STATE(130), + [sym_while_statement] = STATE(130), + [sym_do_statement] = STATE(130), + [sym_for_statement] = STATE(130), + [sym_return_statement] = STATE(130), + [sym_break_statement] = STATE(130), + [sym_continue_statement] = STATE(130), + [sym_goto_statement] = STATE(130), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21613,20 +22005,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(315), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21646,42 +22038,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [145] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(143), - [sym_attributed_statement] = STATE(143), - [sym_labeled_statement] = STATE(143), - [sym_expression_statement] = STATE(143), - [sym_if_statement] = STATE(143), - [sym_switch_statement] = STATE(143), - [sym_case_statement] = STATE(143), - [sym_while_statement] = STATE(143), - [sym_do_statement] = STATE(143), - [sym_for_statement] = STATE(143), - [sym_return_statement] = STATE(143), - [sym_break_statement] = STATE(143), - [sym_continue_statement] = STATE(143), - [sym_goto_statement] = STATE(143), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [150] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + }, + [151] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(134), + [sym_attributed_statement] = STATE(134), + [sym_labeled_statement] = STATE(134), + [sym_expression_statement] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_switch_statement] = STATE(134), + [sym_case_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_return_statement] = STATE(134), + [sym_break_statement] = STATE(134), + [sym_continue_statement] = STATE(134), + [sym_goto_statement] = STATE(134), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21689,20 +22157,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(27), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21722,194 +22190,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(970), - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [152] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token2] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [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(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [148] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [153] = { + [sym_attribute_declaration] = STATE(140), + [sym_compound_statement] = STATE(141), + [sym_attributed_statement] = STATE(141), + [sym_labeled_statement] = STATE(141), + [sym_expression_statement] = STATE(141), + [sym_if_statement] = STATE(141), + [sym_switch_statement] = STATE(141), + [sym_case_statement] = STATE(141), + [sym_while_statement] = STATE(141), + [sym_do_statement] = STATE(141), + [sym_for_statement] = STATE(141), + [sym_return_statement] = STATE(141), + [sym_break_statement] = STATE(141), + [sym_continue_statement] = STATE(141), + [sym_goto_statement] = STATE(141), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21917,20 +22309,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(315), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21950,346 +22342,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [149] = { - [ts_builtin_sym_end] = ACTIONS(982), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [sym_comment] = ACTIONS(3), - }, - [151] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(150), - [sym_attributed_statement] = STATE(150), - [sym_labeled_statement] = STATE(150), - [sym_expression_statement] = STATE(150), - [sym_if_statement] = STATE(150), - [sym_switch_statement] = STATE(150), - [sym_case_statement] = STATE(150), - [sym_while_statement] = STATE(150), - [sym_do_statement] = STATE(150), - [sym_for_statement] = STATE(150), - [sym_return_statement] = STATE(150), - [sym_break_statement] = STATE(150), - [sym_continue_statement] = STATE(150), - [sym_goto_statement] = STATE(150), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1132), - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1171), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1192), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [sym_null] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token2] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [154] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(177), + [sym_attributed_statement] = STATE(177), + [sym_labeled_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym_if_statement] = STATE(177), + [sym_switch_statement] = STATE(177), + [sym_case_statement] = STATE(177), + [sym_while_statement] = STATE(177), + [sym_do_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym_return_statement] = STATE(177), + [sym_break_statement] = STATE(177), + [sym_continue_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22297,20 +22385,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(315), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -22330,270 +22418,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [154] = { - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_if_token2] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, [155] = { - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, [156] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token2] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [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(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_if_token2] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), [sym_comment] = ACTIONS(3), }, [157] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(258), - [sym_attributed_statement] = STATE(258), - [sym_labeled_statement] = STATE(258), - [sym_expression_statement] = STATE(258), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(258), - [sym_case_statement] = STATE(258), - [sym_while_statement] = STATE(258), - [sym_do_statement] = STATE(258), - [sym_for_statement] = STATE(258), - [sym_return_statement] = STATE(258), - [sym_break_statement] = STATE(258), - [sym_continue_statement] = STATE(258), - [sym_goto_statement] = STATE(258), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(99), + [sym_attributed_statement] = STATE(99), + [sym_labeled_statement] = STATE(99), + [sym_expression_statement] = STATE(99), + [sym_if_statement] = STATE(99), + [sym_switch_statement] = STATE(99), + [sym_case_statement] = STATE(99), + [sym_while_statement] = STATE(99), + [sym_do_statement] = STATE(99), + [sym_for_statement] = STATE(99), + [sym_return_statement] = STATE(99), + [sym_break_statement] = STATE(99), + [sym_continue_statement] = STATE(99), + [sym_goto_statement] = STATE(99), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22601,20 +22613,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(315), + [anon_sym_SEMI] = ACTIONS(109), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -22635,40 +22647,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [158] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(177), - [sym_attributed_statement] = STATE(177), - [sym_labeled_statement] = STATE(177), - [sym_expression_statement] = STATE(177), - [sym_if_statement] = STATE(177), - [sym_switch_statement] = STATE(177), - [sym_case_statement] = STATE(177), - [sym_while_statement] = STATE(177), - [sym_do_statement] = STATE(177), - [sym_for_statement] = STATE(177), - [sym_return_statement] = STATE(177), - [sym_break_statement] = STATE(177), - [sym_continue_statement] = STATE(177), - [sym_goto_statement] = STATE(177), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [159] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [160] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(233), + [sym_attributed_statement] = STATE(233), + [sym_labeled_statement] = STATE(233), + [sym_expression_statement] = STATE(233), + [sym_if_statement] = STATE(233), + [sym_switch_statement] = STATE(233), + [sym_case_statement] = STATE(233), + [sym_while_statement] = STATE(233), + [sym_do_statement] = STATE(233), + [sym_for_statement] = STATE(233), + [sym_return_statement] = STATE(233), + [sym_break_statement] = STATE(233), + [sym_continue_statement] = STATE(233), + [sym_goto_statement] = STATE(233), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -22677,20 +22841,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(357), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -22710,270 +22874,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [159] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token2] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [160] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token2] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, [161] = { - [ts_builtin_sym_end] = ACTIONS(994), - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_if_token2] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), [sym_comment] = ACTIONS(3), }, [162] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(152), - [sym_attributed_statement] = STATE(152), - [sym_labeled_statement] = STATE(152), - [sym_expression_statement] = STATE(152), - [sym_if_statement] = STATE(152), - [sym_switch_statement] = STATE(152), - [sym_case_statement] = STATE(152), - [sym_while_statement] = STATE(152), - [sym_do_statement] = STATE(152), - [sym_for_statement] = STATE(152), - [sym_return_statement] = STATE(152), - [sym_break_statement] = STATE(152), - [sym_continue_statement] = STATE(152), - [sym_goto_statement] = STATE(152), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(1434), + [sym_attributed_statement] = STATE(1434), + [sym_labeled_statement] = STATE(1434), + [sym_expression_statement] = STATE(1434), + [sym_if_statement] = STATE(1434), + [sym_switch_statement] = STATE(1434), + [sym_case_statement] = STATE(1434), + [sym_while_statement] = STATE(1434), + [sym_do_statement] = STATE(1434), + [sym_for_statement] = STATE(1434), + [sym_return_statement] = STATE(1434), + [sym_break_statement] = STATE(1434), + [sym_continue_statement] = STATE(1434), + [sym_goto_statement] = STATE(1434), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22981,20 +22993,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(315), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -23015,41 +23027,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [163] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(98), + [sym_attributed_statement] = STATE(98), + [sym_labeled_statement] = STATE(98), + [sym_expression_statement] = STATE(98), + [sym_if_statement] = STATE(98), + [sym_switch_statement] = STATE(98), + [sym_case_statement] = STATE(98), + [sym_while_statement] = STATE(98), + [sym_do_statement] = STATE(98), + [sym_for_statement] = STATE(98), + [sym_return_statement] = STATE(98), + [sym_break_statement] = STATE(98), + [sym_continue_statement] = STATE(98), + [sym_goto_statement] = STATE(98), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23057,20 +23069,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(315), + [anon_sym_SEMI] = ACTIONS(109), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -23091,41 +23103,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [164] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(156), - [sym_attributed_statement] = STATE(156), - [sym_labeled_statement] = STATE(156), - [sym_expression_statement] = STATE(156), - [sym_if_statement] = STATE(156), - [sym_switch_statement] = STATE(156), - [sym_case_statement] = STATE(156), - [sym_while_statement] = STATE(156), - [sym_do_statement] = STATE(156), - [sym_for_statement] = STATE(156), - [sym_return_statement] = STATE(156), - [sym_break_statement] = STATE(156), - [sym_continue_statement] = STATE(156), - [sym_goto_statement] = STATE(156), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(96), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_case_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23133,20 +23145,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(315), + [anon_sym_SEMI] = ACTIONS(109), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -23167,116 +23179,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [165] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token2] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, [166] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23285,20 +23297,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(357), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -23319,421 +23331,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [167] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(159), - [sym_attributed_statement] = STATE(159), - [sym_labeled_statement] = STATE(159), - [sym_expression_statement] = STATE(159), - [sym_if_statement] = STATE(159), - [sym_switch_statement] = STATE(159), - [sym_case_statement] = STATE(159), - [sym_while_statement] = STATE(159), - [sym_do_statement] = STATE(159), - [sym_for_statement] = STATE(159), - [sym_return_statement] = STATE(159), - [sym_break_statement] = STATE(159), - [sym_continue_statement] = STATE(159), - [sym_goto_statement] = STATE(159), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), - [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(315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(160), - [sym_attributed_statement] = STATE(160), - [sym_labeled_statement] = STATE(160), - [sym_expression_statement] = STATE(160), - [sym_if_statement] = STATE(160), - [sym_switch_statement] = STATE(160), - [sym_case_statement] = STATE(160), - [sym_while_statement] = STATE(160), - [sym_do_statement] = STATE(160), - [sym_for_statement] = STATE(160), - [sym_return_statement] = STATE(160), - [sym_break_statement] = STATE(160), - [sym_continue_statement] = STATE(160), - [sym_goto_statement] = STATE(160), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), - [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(315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token2] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token2] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [172] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(165), - [sym_attributed_statement] = STATE(165), - [sym_labeled_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_switch_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_while_statement] = STATE(165), - [sym_do_statement] = STATE(165), - [sym_for_statement] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_break_statement] = STATE(165), - [sym_continue_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [168] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(95), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_case_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23741,20 +23449,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(315), + [anon_sym_SEMI] = ACTIONS(109), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -23774,8 +23482,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_attribute_declaration] = STATE(270), + [169] = { + [ts_builtin_sym_end] = ACTIONS(946), + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [sym_attribute_declaration] = STATE(170), [sym_compound_statement] = STATE(169), [sym_attributed_statement] = STATE(169), [sym_labeled_statement] = STATE(169), @@ -23790,786 +23574,710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(169), [sym_continue_statement] = STATE(169), [sym_goto_statement] = STATE(169), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), - [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(315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1192), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [174] = { - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_if_token2] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), + [171] = { + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), + [sym_comment] = ACTIONS(3), + }, + [172] = { + [sym_identifier] = ACTIONS(902), + [aux_sym_preproc_include_token1] = ACTIONS(902), + [aux_sym_preproc_def_token1] = ACTIONS(902), + [aux_sym_preproc_if_token1] = ACTIONS(902), + [aux_sym_preproc_if_token2] = ACTIONS(902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(902), + [sym_preproc_directive] = ACTIONS(902), + [anon_sym_LPAREN2] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_typedef] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym___attribute__] = ACTIONS(902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(904), + [anon_sym___declspec] = ACTIONS(902), + [anon_sym___cdecl] = ACTIONS(902), + [anon_sym___clrcall] = ACTIONS(902), + [anon_sym___stdcall] = ACTIONS(902), + [anon_sym___fastcall] = ACTIONS(902), + [anon_sym___thiscall] = ACTIONS(902), + [anon_sym___vectorcall] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_static] = ACTIONS(902), + [anon_sym_auto] = ACTIONS(902), + [anon_sym_register] = ACTIONS(902), + [anon_sym_inline] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_restrict] = ACTIONS(902), + [anon_sym__Atomic] = ACTIONS(902), + [anon_sym_signed] = ACTIONS(902), + [anon_sym_unsigned] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [sym_primitive_type] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_goto] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_sizeof] = ACTIONS(902), + [sym_number_literal] = ACTIONS(904), + [anon_sym_L_SQUOTE] = ACTIONS(904), + [anon_sym_u_SQUOTE] = ACTIONS(904), + [anon_sym_U_SQUOTE] = ACTIONS(904), + [anon_sym_u8_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_L_DQUOTE] = ACTIONS(904), + [anon_sym_u_DQUOTE] = ACTIONS(904), + [anon_sym_U_DQUOTE] = ACTIONS(904), + [anon_sym_u8_DQUOTE] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(904), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + }, + [173] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(94), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_case_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [174] = { + [ts_builtin_sym_end] = ACTIONS(954), + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, [175] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(192), + [sym_attributed_statement] = STATE(192), + [sym_labeled_statement] = STATE(192), + [sym_expression_statement] = STATE(192), + [sym_if_statement] = STATE(192), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(192), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(192), + [sym_for_statement] = STATE(192), + [sym_return_statement] = STATE(192), + [sym_break_statement] = STATE(192), + [sym_continue_statement] = STATE(192), + [sym_goto_statement] = STATE(192), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), + [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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [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_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [176] = { - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(201), + [sym_attributed_statement] = STATE(201), + [sym_labeled_statement] = STATE(201), + [sym_expression_statement] = STATE(201), + [sym_if_statement] = STATE(201), + [sym_switch_statement] = STATE(201), + [sym_case_statement] = STATE(201), + [sym_while_statement] = STATE(201), + [sym_do_statement] = STATE(201), + [sym_for_statement] = STATE(201), + [sym_return_statement] = STATE(201), + [sym_break_statement] = STATE(201), + [sym_continue_statement] = STATE(201), + [sym_goto_statement] = STATE(201), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), + [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(505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [177] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [ts_builtin_sym_end] = ACTIONS(896), + [sym_identifier] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(896), + [anon_sym___declspec] = ACTIONS(894), + [anon_sym___cdecl] = ACTIONS(894), + [anon_sym___clrcall] = ACTIONS(894), + [anon_sym___stdcall] = ACTIONS(894), + [anon_sym___fastcall] = ACTIONS(894), + [anon_sym___thiscall] = ACTIONS(894), + [anon_sym___vectorcall] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(896), + [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(896), + [anon_sym_u_DQUOTE] = ACTIONS(896), + [anon_sym_U_DQUOTE] = ACTIONS(896), + [anon_sym_u8_DQUOTE] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(896), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), [sym_comment] = ACTIONS(3), }, [178] = { - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [aux_sym_preproc_if_token2] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(982), - [anon_sym___declspec] = ACTIONS(980), - [anon_sym___cdecl] = ACTIONS(980), - [anon_sym___clrcall] = ACTIONS(980), - [anon_sym___stdcall] = ACTIONS(980), - [anon_sym___fastcall] = ACTIONS(980), - [anon_sym___thiscall] = ACTIONS(980), - [anon_sym___vectorcall] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_long] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_sizeof] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym_u_SQUOTE] = ACTIONS(982), - [anon_sym_U_SQUOTE] = ACTIONS(982), - [anon_sym_u8_SQUOTE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_u_DQUOTE] = ACTIONS(982), - [anon_sym_U_DQUOTE] = ACTIONS(982), - [anon_sym_u8_DQUOTE] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(980), + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(92), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_case_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [179] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_if_token2] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_identifier] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(972), - [aux_sym_preproc_if_token2] = ACTIONS(972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(972), - [aux_sym_preproc_ifdef_token2] = ACTIONS(972), - [sym_preproc_directive] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(974), - [anon_sym___declspec] = ACTIONS(972), - [anon_sym___cdecl] = ACTIONS(972), - [anon_sym___clrcall] = ACTIONS(972), - [anon_sym___stdcall] = ACTIONS(972), - [anon_sym___fastcall] = ACTIONS(972), - [anon_sym___thiscall] = ACTIONS(972), - [anon_sym___vectorcall] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_goto] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_sizeof] = ACTIONS(972), - [sym_number_literal] = ACTIONS(974), - [anon_sym_L_SQUOTE] = ACTIONS(974), - [anon_sym_u_SQUOTE] = ACTIONS(974), - [anon_sym_U_SQUOTE] = ACTIONS(974), - [anon_sym_u8_SQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_L_DQUOTE] = ACTIONS(974), - [anon_sym_u_DQUOTE] = ACTIONS(974), - [anon_sym_U_DQUOTE] = ACTIONS(974), - [anon_sym_u8_DQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_true] = ACTIONS(972), - [sym_false] = ACTIONS(972), - [sym_null] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [aux_sym_preproc_if_token2] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(970), - [anon_sym___declspec] = ACTIONS(968), - [anon_sym___cdecl] = ACTIONS(968), - [anon_sym___clrcall] = ACTIONS(968), - [anon_sym___stdcall] = ACTIONS(968), - [anon_sym___fastcall] = ACTIONS(968), - [anon_sym___thiscall] = ACTIONS(968), - [anon_sym___vectorcall] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_static] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym__Atomic] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(970), - [anon_sym_u_SQUOTE] = ACTIONS(970), - [anon_sym_U_SQUOTE] = ACTIONS(970), - [anon_sym_u8_SQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_L_DQUOTE] = ACTIONS(970), - [anon_sym_u_DQUOTE] = ACTIONS(970), - [anon_sym_U_DQUOTE] = ACTIONS(970), - [anon_sym_u8_DQUOTE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(184), - [sym_attributed_statement] = STATE(184), - [sym_labeled_statement] = STATE(184), - [sym_expression_statement] = STATE(184), - [sym_if_statement] = STATE(184), - [sym_switch_statement] = STATE(184), - [sym_case_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_do_statement] = STATE(184), - [sym_for_statement] = STATE(184), - [sym_return_statement] = STATE(184), - [sym_break_statement] = STATE(184), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(184), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_attribute_declaration] = STATE(247), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(1128), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24577,20 +24285,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(357), + [anon_sym_SEMI] = ACTIONS(109), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -24610,194 +24318,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [184] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(84), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_case_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(1207), - [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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(68), - [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_case_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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [180] = { + [sym_attribute_declaration] = STATE(247), + [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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24838,42 +24394,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(146), - [sym_attributed_statement] = STATE(146), - [sym_labeled_statement] = STATE(146), - [sym_expression_statement] = STATE(146), - [sym_if_statement] = STATE(146), - [sym_switch_statement] = STATE(146), - [sym_case_statement] = STATE(146), - [sym_while_statement] = STATE(146), - [sym_do_statement] = STATE(146), - [sym_for_statement] = STATE(146), - [sym_return_statement] = STATE(146), - [sym_break_statement] = STATE(146), - [sym_continue_statement] = STATE(146), - [sym_goto_statement] = STATE(146), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [181] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(196), + [sym_attributed_statement] = STATE(196), + [sym_labeled_statement] = STATE(196), + [sym_expression_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_switch_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_do_statement] = STATE(196), + [sym_for_statement] = STATE(196), + [sym_return_statement] = STATE(196), + [sym_break_statement] = STATE(196), + [sym_continue_statement] = STATE(196), + [sym_goto_statement] = STATE(196), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24914,42 +24470,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [188] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(147), - [sym_attributed_statement] = STATE(147), - [sym_labeled_statement] = STATE(147), - [sym_expression_statement] = STATE(147), - [sym_if_statement] = STATE(147), - [sym_switch_statement] = STATE(147), - [sym_case_statement] = STATE(147), - [sym_while_statement] = STATE(147), - [sym_do_statement] = STATE(147), - [sym_for_statement] = STATE(147), - [sym_return_statement] = STATE(147), - [sym_break_statement] = STATE(147), - [sym_continue_statement] = STATE(147), - [sym_goto_statement] = STATE(147), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [182] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24957,20 +24513,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(27), + [anon_sym_SEMI] = ACTIONS(109), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -24990,42 +24546,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [189] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(79), - [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_case_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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [183] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(86), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25066,118 +24622,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1000), - [aux_sym_preproc_def_token1] = ACTIONS(1000), - [aux_sym_preproc_if_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_LPAREN2] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym___attribute__] = ACTIONS(1000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), - [anon_sym___declspec] = ACTIONS(1000), - [anon_sym___cdecl] = ACTIONS(1000), - [anon_sym___clrcall] = ACTIONS(1000), - [anon_sym___stdcall] = ACTIONS(1000), - [anon_sym___fastcall] = ACTIONS(1000), - [anon_sym___thiscall] = ACTIONS(1000), - [anon_sym___vectorcall] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_signed] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_L_SQUOTE] = ACTIONS(1002), - [anon_sym_u_SQUOTE] = ACTIONS(1002), - [anon_sym_U_SQUOTE] = ACTIONS(1002), - [anon_sym_u8_SQUOTE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_L_DQUOTE] = ACTIONS(1002), - [anon_sym_u_DQUOTE] = ACTIONS(1002), - [anon_sym_U_DQUOTE] = ACTIONS(1002), - [anon_sym_u8_DQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), + [184] = { + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_if_token2] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), [sym_comment] = ACTIONS(3), }, - [191] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(149), - [sym_attributed_statement] = STATE(149), - [sym_labeled_statement] = STATE(149), - [sym_expression_statement] = STATE(149), - [sym_if_statement] = STATE(149), - [sym_switch_statement] = STATE(149), - [sym_case_statement] = STATE(149), - [sym_while_statement] = STATE(149), - [sym_do_statement] = STATE(149), - [sym_for_statement] = STATE(149), - [sym_return_statement] = STATE(149), - [sym_break_statement] = STATE(149), - [sym_continue_statement] = STATE(149), - [sym_goto_statement] = STATE(149), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [185] = { + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_if_token2] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), + [sym_comment] = ACTIONS(3), + }, + [186] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(197), + [sym_attributed_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_switch_statement] = STATE(197), + [sym_case_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_goto_statement] = STATE(197), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25218,42 +24850,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [192] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(95), - [sym_attributed_statement] = STATE(95), - [sym_labeled_statement] = STATE(95), - [sym_expression_statement] = STATE(95), - [sym_if_statement] = STATE(95), - [sym_switch_statement] = STATE(95), - [sym_case_statement] = STATE(95), - [sym_while_statement] = STATE(95), - [sym_do_statement] = STATE(95), - [sym_for_statement] = STATE(95), - [sym_return_statement] = STATE(95), - [sym_break_statement] = STATE(95), - [sym_continue_statement] = STATE(95), - [sym_goto_statement] = STATE(95), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [187] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(69), + [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_case_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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25294,311 +24926,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [194] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_if_token2] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [195] = { - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym___attribute__] = ACTIONS(956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(958), - [anon_sym___declspec] = ACTIONS(956), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_static] = ACTIONS(956), - [anon_sym_auto] = ACTIONS(956), - [anon_sym_register] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_const] = ACTIONS(956), - [anon_sym_volatile] = ACTIONS(956), - [anon_sym_restrict] = ACTIONS(956), - [anon_sym__Atomic] = ACTIONS(956), - [anon_sym_signed] = ACTIONS(956), - [anon_sym_unsigned] = ACTIONS(956), - [anon_sym_long] = ACTIONS(956), - [anon_sym_short] = ACTIONS(956), - [sym_primitive_type] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_struct] = ACTIONS(956), - [anon_sym_union] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_break] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(956), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_sizeof] = ACTIONS(956), - [sym_number_literal] = ACTIONS(958), - [anon_sym_L_SQUOTE] = ACTIONS(958), - [anon_sym_u_SQUOTE] = ACTIONS(958), - [anon_sym_U_SQUOTE] = ACTIONS(958), - [anon_sym_u8_SQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [anon_sym_L_DQUOTE] = ACTIONS(958), - [anon_sym_u_DQUOTE] = ACTIONS(958), - [anon_sym_U_DQUOTE] = ACTIONS(958), - [anon_sym_u8_DQUOTE] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_comment] = ACTIONS(3), - }, - [196] = { - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(964), - [aux_sym_preproc_def_token1] = ACTIONS(964), - [aux_sym_preproc_if_token1] = ACTIONS(964), - [aux_sym_preproc_if_token2] = ACTIONS(964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(964), - [aux_sym_preproc_ifdef_token2] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_LPAREN2] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym___attribute__] = ACTIONS(964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(966), - [anon_sym___declspec] = ACTIONS(964), - [anon_sym___cdecl] = ACTIONS(964), - [anon_sym___clrcall] = ACTIONS(964), - [anon_sym___stdcall] = ACTIONS(964), - [anon_sym___fastcall] = ACTIONS(964), - [anon_sym___thiscall] = ACTIONS(964), - [anon_sym___vectorcall] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_signed] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(966), - [anon_sym_L_SQUOTE] = ACTIONS(966), - [anon_sym_u_SQUOTE] = ACTIONS(966), - [anon_sym_U_SQUOTE] = ACTIONS(966), - [anon_sym_u8_SQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_L_DQUOTE] = ACTIONS(966), - [anon_sym_u_DQUOTE] = ACTIONS(966), - [anon_sym_U_DQUOTE] = ACTIONS(966), - [anon_sym_u8_DQUOTE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), + [188] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(84), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_case_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [197] = { + [189] = { [ts_builtin_sym_end] = ACTIONS(1026), [sym_identifier] = ACTIONS(1024), [aux_sym_preproc_include_token1] = ACTIONS(1024), @@ -25674,42 +25078,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(175), - [sym_attributed_statement] = STATE(175), - [sym_labeled_statement] = STATE(175), - [sym_expression_statement] = STATE(175), - [sym_if_statement] = STATE(175), - [sym_switch_statement] = STATE(175), - [sym_case_statement] = STATE(175), - [sym_while_statement] = STATE(175), - [sym_do_statement] = STATE(175), - [sym_for_statement] = STATE(175), - [sym_return_statement] = STATE(175), - [sym_break_statement] = STATE(175), - [sym_continue_statement] = STATE(175), - [sym_goto_statement] = STATE(175), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [190] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(204), + [sym_attributed_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_switch_statement] = STATE(204), + [sym_case_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_goto_statement] = STATE(204), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25717,20 +25121,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(315), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -25750,387 +25154,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [199] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_if_token2] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - }, - [201] = { - [sym_attribute_declaration] = STATE(270), - [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__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), - [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(315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), - [sym_comment] = ACTIONS(3), - }, - [203] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(84), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_case_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(1209), - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1192), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [sym_null] = ACTIONS(1204), + [191] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [204] = { + [192] = { + [ts_builtin_sym_end] = ACTIONS(958), [sym_identifier] = ACTIONS(956), [aux_sym_preproc_include_token1] = ACTIONS(956), [aux_sym_preproc_def_token1] = ACTIONS(956), @@ -26158,7 +25259,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(956), [anon_sym___vectorcall] = ACTIONS(956), [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), [anon_sym_static] = ACTIONS(956), [anon_sym_auto] = ACTIONS(956), [anon_sym_register] = ACTIONS(956), @@ -26206,117 +25306,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [205] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [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(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), + [193] = { + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [206] = { - [sym_attribute_declaration] = STATE(139), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [194] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_if_token2] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [195] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(212), + [sym_attributed_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_switch_statement] = STATE(212), + [sym_case_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_goto_statement] = STATE(212), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -26325,20 +25501,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(357), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26358,118 +25534,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), + [196] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [208] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(161), - [sym_attributed_statement] = STATE(161), - [sym_labeled_statement] = STATE(161), - [sym_expression_statement] = STATE(161), - [sym_if_statement] = STATE(161), - [sym_switch_statement] = STATE(161), - [sym_case_statement] = STATE(161), - [sym_while_statement] = STATE(161), - [sym_do_statement] = STATE(161), - [sym_for_statement] = STATE(161), - [sym_return_statement] = STATE(161), - [sym_break_statement] = STATE(161), - [sym_continue_statement] = STATE(161), - [sym_goto_statement] = STATE(161), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [197] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(216), + [sym_attributed_statement] = STATE(216), + [sym_labeled_statement] = STATE(216), + [sym_expression_statement] = STATE(216), + [sym_if_statement] = STATE(216), + [sym_switch_statement] = STATE(216), + [sym_case_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_do_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_return_statement] = STATE(216), + [sym_break_statement] = STATE(216), + [sym_continue_statement] = STATE(216), + [sym_goto_statement] = STATE(216), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26510,269 +25762,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(910), - [sym_identifier] = ACTIONS(908), - [aux_sym_preproc_include_token1] = ACTIONS(908), - [aux_sym_preproc_def_token1] = ACTIONS(908), - [aux_sym_preproc_if_token1] = ACTIONS(908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(908), - [sym_preproc_directive] = ACTIONS(908), - [anon_sym_LPAREN2] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(910), - [anon_sym_TILDE] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(910), - [anon_sym_SEMI] = ACTIONS(910), - [anon_sym_typedef] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym___attribute__] = ACTIONS(908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(910), - [anon_sym___declspec] = ACTIONS(908), - [anon_sym___cdecl] = ACTIONS(908), - [anon_sym___clrcall] = ACTIONS(908), - [anon_sym___stdcall] = ACTIONS(908), - [anon_sym___fastcall] = ACTIONS(908), - [anon_sym___thiscall] = ACTIONS(908), - [anon_sym___vectorcall] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_static] = ACTIONS(908), - [anon_sym_auto] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_inline] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_volatile] = ACTIONS(908), - [anon_sym_restrict] = ACTIONS(908), - [anon_sym__Atomic] = ACTIONS(908), - [anon_sym_signed] = ACTIONS(908), - [anon_sym_unsigned] = ACTIONS(908), - [anon_sym_long] = ACTIONS(908), - [anon_sym_short] = ACTIONS(908), - [sym_primitive_type] = ACTIONS(908), - [anon_sym_enum] = ACTIONS(908), - [anon_sym_struct] = ACTIONS(908), - [anon_sym_union] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_else] = ACTIONS(908), - [anon_sym_switch] = ACTIONS(908), - [anon_sym_case] = ACTIONS(908), - [anon_sym_default] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_goto] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(910), - [anon_sym_PLUS_PLUS] = ACTIONS(910), - [anon_sym_sizeof] = ACTIONS(908), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(910), - [anon_sym_u_SQUOTE] = ACTIONS(910), - [anon_sym_U_SQUOTE] = ACTIONS(910), - [anon_sym_u8_SQUOTE] = ACTIONS(910), - [anon_sym_SQUOTE] = ACTIONS(910), - [anon_sym_L_DQUOTE] = ACTIONS(910), - [anon_sym_u_DQUOTE] = ACTIONS(910), - [anon_sym_U_DQUOTE] = ACTIONS(910), - [anon_sym_u8_DQUOTE] = ACTIONS(910), - [anon_sym_DQUOTE] = ACTIONS(910), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), + [199] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [212] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(155), - [sym_attributed_statement] = STATE(155), - [sym_labeled_statement] = STATE(155), - [sym_expression_statement] = STATE(155), - [sym_if_statement] = STATE(155), - [sym_switch_statement] = STATE(155), - [sym_case_statement] = STATE(155), - [sym_while_statement] = STATE(155), - [sym_do_statement] = STATE(155), - [sym_for_statement] = STATE(155), - [sym_return_statement] = STATE(155), - [sym_break_statement] = STATE(155), - [sym_continue_statement] = STATE(155), - [sym_goto_statement] = STATE(155), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [200] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(1414), + [sym_attributed_statement] = STATE(1414), + [sym_labeled_statement] = STATE(1414), + [sym_expression_statement] = STATE(1414), + [sym_if_statement] = STATE(1414), + [sym_switch_statement] = STATE(1414), + [sym_case_statement] = STATE(1414), + [sym_while_statement] = STATE(1414), + [sym_do_statement] = STATE(1414), + [sym_for_statement] = STATE(1414), + [sym_return_statement] = STATE(1414), + [sym_break_statement] = STATE(1414), + [sym_continue_statement] = STATE(1414), + [sym_goto_statement] = STATE(1414), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -26781,20 +25881,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(357), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26814,235 +25914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [213] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_if_token2] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(996), - [aux_sym_preproc_include_token1] = ACTIONS(996), - [aux_sym_preproc_def_token1] = ACTIONS(996), - [aux_sym_preproc_if_token1] = ACTIONS(996), - [aux_sym_preproc_if_token2] = ACTIONS(996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(996), - [sym_preproc_directive] = ACTIONS(996), - [anon_sym_LPAREN2] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_typedef] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym___attribute__] = ACTIONS(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(998), - [anon_sym___declspec] = ACTIONS(996), - [anon_sym___cdecl] = ACTIONS(996), - [anon_sym___clrcall] = ACTIONS(996), - [anon_sym___stdcall] = ACTIONS(996), - [anon_sym___fastcall] = ACTIONS(996), - [anon_sym___thiscall] = ACTIONS(996), - [anon_sym___vectorcall] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_static] = ACTIONS(996), - [anon_sym_auto] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_inline] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_volatile] = ACTIONS(996), - [anon_sym_restrict] = ACTIONS(996), - [anon_sym__Atomic] = ACTIONS(996), - [anon_sym_signed] = ACTIONS(996), - [anon_sym_unsigned] = ACTIONS(996), - [anon_sym_long] = ACTIONS(996), - [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_if_token2] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [216] = { + [201] = { [sym_identifier] = ACTIONS(932), [aux_sym_preproc_include_token1] = ACTIONS(932), [aux_sym_preproc_def_token1] = ACTIONS(932), @@ -27118,83 +25990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(1022), - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [218] = { + [202] = { [sym_identifier] = ACTIONS(936), [aux_sym_preproc_include_token1] = ACTIONS(936), [aux_sym_preproc_def_token1] = ACTIONS(936), @@ -27270,118 +26066,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [219] = { - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(960), - [aux_sym_preproc_def_token1] = ACTIONS(960), - [aux_sym_preproc_if_token1] = ACTIONS(960), - [aux_sym_preproc_if_token2] = ACTIONS(960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(960), - [aux_sym_preproc_ifdef_token2] = ACTIONS(960), - [sym_preproc_directive] = ACTIONS(960), - [anon_sym_LPAREN2] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym___attribute__] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(962), - [anon_sym___declspec] = ACTIONS(960), - [anon_sym___cdecl] = ACTIONS(960), - [anon_sym___clrcall] = ACTIONS(960), - [anon_sym___stdcall] = ACTIONS(960), - [anon_sym___fastcall] = ACTIONS(960), - [anon_sym___thiscall] = ACTIONS(960), - [anon_sym___vectorcall] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_static] = ACTIONS(960), - [anon_sym_auto] = ACTIONS(960), - [anon_sym_register] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(960), - [anon_sym_restrict] = ACTIONS(960), - [anon_sym__Atomic] = ACTIONS(960), - [anon_sym_signed] = ACTIONS(960), - [anon_sym_unsigned] = ACTIONS(960), - [anon_sym_long] = ACTIONS(960), - [anon_sym_short] = ACTIONS(960), - [sym_primitive_type] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_goto] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(960), - [sym_number_literal] = ACTIONS(962), - [anon_sym_L_SQUOTE] = ACTIONS(962), - [anon_sym_u_SQUOTE] = ACTIONS(962), - [anon_sym_U_SQUOTE] = ACTIONS(962), - [anon_sym_u8_SQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_L_DQUOTE] = ACTIONS(962), - [anon_sym_u_DQUOTE] = ACTIONS(962), - [anon_sym_U_DQUOTE] = ACTIONS(962), - [anon_sym_u8_DQUOTE] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_true] = ACTIONS(960), - [sym_false] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(204), - [sym_attributed_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_switch_statement] = STATE(204), - [sym_case_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_goto_statement] = STATE(204), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [203] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(79), + [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_case_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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(1128), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27389,20 +26109,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(357), + [anon_sym_SEMI] = ACTIONS(109), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27422,42 +26142,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [221] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [204] = { + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [205] = { + [sym_attribute_declaration] = STATE(153), + [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__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(1128), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27465,20 +26261,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(357), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27498,345 +26294,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(896), - [aux_sym_preproc_include_token1] = ACTIONS(896), - [aux_sym_preproc_def_token1] = ACTIONS(896), - [aux_sym_preproc_if_token1] = ACTIONS(896), - [aux_sym_preproc_if_token2] = ACTIONS(896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(896), - [sym_preproc_directive] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_typedef] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), - [anon_sym___attribute__] = ACTIONS(896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(898), - [anon_sym___declspec] = ACTIONS(896), - [anon_sym___cdecl] = ACTIONS(896), - [anon_sym___clrcall] = ACTIONS(896), - [anon_sym___stdcall] = ACTIONS(896), - [anon_sym___fastcall] = ACTIONS(896), - [anon_sym___thiscall] = ACTIONS(896), - [anon_sym___vectorcall] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_static] = ACTIONS(896), - [anon_sym_auto] = ACTIONS(896), - [anon_sym_register] = ACTIONS(896), - [anon_sym_inline] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_volatile] = ACTIONS(896), - [anon_sym_restrict] = ACTIONS(896), - [anon_sym__Atomic] = ACTIONS(896), - [anon_sym_signed] = ACTIONS(896), - [anon_sym_unsigned] = ACTIONS(896), - [anon_sym_long] = ACTIONS(896), - [anon_sym_short] = ACTIONS(896), - [sym_primitive_type] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_union] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_case] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_goto] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_sizeof] = ACTIONS(896), - [sym_number_literal] = ACTIONS(898), - [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(898), - [anon_sym_u_DQUOTE] = ACTIONS(898), - [anon_sym_U_DQUOTE] = ACTIONS(898), - [anon_sym_u8_DQUOTE] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(898), - [sym_true] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_null] = ACTIONS(896), + [206] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(217), + [sym_attributed_statement] = STATE(217), + [sym_labeled_statement] = STATE(217), + [sym_expression_statement] = STATE(217), + [sym_if_statement] = STATE(217), + [sym_switch_statement] = STATE(217), + [sym_case_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_do_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_return_statement] = STATE(217), + [sym_break_statement] = STATE(217), + [sym_continue_statement] = STATE(217), + [sym_goto_statement] = STATE(217), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), + [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(505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_if_token2] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(908), - [aux_sym_preproc_include_token1] = ACTIONS(908), - [aux_sym_preproc_def_token1] = ACTIONS(908), - [aux_sym_preproc_if_token1] = ACTIONS(908), - [aux_sym_preproc_if_token2] = ACTIONS(908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(908), - [sym_preproc_directive] = ACTIONS(908), - [anon_sym_LPAREN2] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(910), - [anon_sym_TILDE] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(910), - [anon_sym_SEMI] = ACTIONS(910), - [anon_sym_typedef] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym___attribute__] = ACTIONS(908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(910), - [anon_sym___declspec] = ACTIONS(908), - [anon_sym___cdecl] = ACTIONS(908), - [anon_sym___clrcall] = ACTIONS(908), - [anon_sym___stdcall] = ACTIONS(908), - [anon_sym___fastcall] = ACTIONS(908), - [anon_sym___thiscall] = ACTIONS(908), - [anon_sym___vectorcall] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_static] = ACTIONS(908), - [anon_sym_auto] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_inline] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_volatile] = ACTIONS(908), - [anon_sym_restrict] = ACTIONS(908), - [anon_sym__Atomic] = ACTIONS(908), - [anon_sym_signed] = ACTIONS(908), - [anon_sym_unsigned] = ACTIONS(908), - [anon_sym_long] = ACTIONS(908), - [anon_sym_short] = ACTIONS(908), - [sym_primitive_type] = ACTIONS(908), - [anon_sym_enum] = ACTIONS(908), - [anon_sym_struct] = ACTIONS(908), - [anon_sym_union] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_else] = ACTIONS(908), - [anon_sym_switch] = ACTIONS(908), - [anon_sym_case] = ACTIONS(908), - [anon_sym_default] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_goto] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(910), - [anon_sym_PLUS_PLUS] = ACTIONS(910), - [anon_sym_sizeof] = ACTIONS(908), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(910), - [anon_sym_u_SQUOTE] = ACTIONS(910), - [anon_sym_U_SQUOTE] = ACTIONS(910), - [anon_sym_u8_SQUOTE] = ACTIONS(910), - [anon_sym_SQUOTE] = ACTIONS(910), - [anon_sym_L_DQUOTE] = ACTIONS(910), - [anon_sym_u_DQUOTE] = ACTIONS(910), - [anon_sym_U_DQUOTE] = ACTIONS(910), - [anon_sym_u8_DQUOTE] = ACTIONS(910), - [anon_sym_DQUOTE] = ACTIONS(910), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(207), - [sym_attributed_statement] = STATE(207), - [sym_labeled_statement] = STATE(207), - [sym_expression_statement] = STATE(207), - [sym_if_statement] = STATE(207), - [sym_switch_statement] = STATE(207), - [sym_case_statement] = STATE(207), - [sym_while_statement] = STATE(207), - [sym_do_statement] = STATE(207), - [sym_for_statement] = STATE(207), - [sym_return_statement] = STATE(207), - [sym_break_statement] = STATE(207), - [sym_continue_statement] = STATE(207), - [sym_goto_statement] = STATE(207), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [207] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(145), + [sym_attributed_statement] = STATE(145), + [sym_labeled_statement] = STATE(145), + [sym_expression_statement] = STATE(145), + [sym_if_statement] = STATE(145), + [sym_switch_statement] = STATE(145), + [sym_case_statement] = STATE(145), + [sym_while_statement] = STATE(145), + [sym_do_statement] = STATE(145), + [sym_for_statement] = STATE(145), + [sym_return_statement] = STATE(145), + [sym_break_statement] = STATE(145), + [sym_continue_statement] = STATE(145), + [sym_goto_statement] = STATE(145), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27845,20 +26413,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(357), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27878,193 +26446,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(892), - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(898), - [sym_identifier] = ACTIONS(896), - [aux_sym_preproc_include_token1] = ACTIONS(896), - [aux_sym_preproc_def_token1] = ACTIONS(896), - [aux_sym_preproc_if_token1] = ACTIONS(896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(896), - [sym_preproc_directive] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_typedef] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), - [anon_sym___attribute__] = ACTIONS(896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(898), - [anon_sym___declspec] = ACTIONS(896), - [anon_sym___cdecl] = ACTIONS(896), - [anon_sym___clrcall] = ACTIONS(896), - [anon_sym___stdcall] = ACTIONS(896), - [anon_sym___fastcall] = ACTIONS(896), - [anon_sym___thiscall] = ACTIONS(896), - [anon_sym___vectorcall] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_static] = ACTIONS(896), - [anon_sym_auto] = ACTIONS(896), - [anon_sym_register] = ACTIONS(896), - [anon_sym_inline] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_volatile] = ACTIONS(896), - [anon_sym_restrict] = ACTIONS(896), - [anon_sym__Atomic] = ACTIONS(896), - [anon_sym_signed] = ACTIONS(896), - [anon_sym_unsigned] = ACTIONS(896), - [anon_sym_long] = ACTIONS(896), - [anon_sym_short] = ACTIONS(896), - [sym_primitive_type] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_union] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_case] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_goto] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_sizeof] = ACTIONS(896), - [sym_number_literal] = ACTIONS(898), - [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(898), - [anon_sym_u_DQUOTE] = ACTIONS(898), - [anon_sym_U_DQUOTE] = ACTIONS(898), - [anon_sym_u8_DQUOTE] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(898), - [sym_true] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_null] = ACTIONS(896), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [sym_attribute_declaration] = STATE(139), - [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__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [208] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(218), + [sym_attributed_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -28073,20 +26489,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(357), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28106,42 +26522,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [230] = { - [sym_attribute_declaration] = STATE(263), - [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__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [209] = { + [sym_attribute_declaration] = STATE(232), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28182,695 +26598,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [210] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(938), - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), - [sym_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [236] = { - [sym_attribute_declaration] = STATE(236), - [sym_compound_statement] = STATE(245), - [sym_attributed_statement] = STATE(245), - [sym_labeled_statement] = STATE(245), - [sym_expression_statement] = STATE(245), - [sym_if_statement] = STATE(245), - [sym_switch_statement] = STATE(245), - [sym_case_statement] = STATE(245), - [sym_while_statement] = STATE(245), - [sym_do_statement] = STATE(245), - [sym_for_statement] = STATE(245), - [sym_return_statement] = STATE(245), - [sym_break_statement] = STATE(245), - [sym_continue_statement] = STATE(245), - [sym_goto_statement] = STATE(245), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1267), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1291), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1192), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [sym_null] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [237] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(1433), - [sym_attributed_statement] = STATE(1433), - [sym_labeled_statement] = STATE(1433), - [sym_expression_statement] = STATE(1433), - [sym_if_statement] = STATE(1433), - [sym_switch_statement] = STATE(1433), - [sym_case_statement] = STATE(1433), - [sym_while_statement] = STATE(1433), - [sym_do_statement] = STATE(1433), - [sym_for_statement] = STATE(1433), - [sym_return_statement] = STATE(1433), - [sym_break_statement] = STATE(1433), - [sym_continue_statement] = STATE(1433), - [sym_goto_statement] = STATE(1433), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), - [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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [sym_comment] = ACTIONS(3), - }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [240] = { + [211] = { [sym_identifier] = ACTIONS(952), [aux_sym_preproc_include_token1] = ACTIONS(952), [aux_sym_preproc_def_token1] = ACTIONS(952), [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), [aux_sym_preproc_ifdef_token1] = ACTIONS(952), [aux_sym_preproc_ifdef_token2] = ACTIONS(952), [sym_preproc_directive] = ACTIONS(952), @@ -28894,7 +26703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(952), [anon_sym___vectorcall] = ACTIONS(952), [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), [anon_sym_static] = ACTIONS(952), [anon_sym_auto] = ACTIONS(952), [anon_sym_register] = ACTIONS(952), @@ -28942,118 +26750,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [241] = { - [sym_attribute_declaration] = STATE(241), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1192), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [sym_null] = ACTIONS(1204), + [212] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [242] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(225), - [sym_attributed_statement] = STATE(225), - [sym_labeled_statement] = STATE(225), - [sym_expression_statement] = STATE(225), - [sym_if_statement] = STATE(225), - [sym_switch_statement] = STATE(225), - [sym_case_statement] = STATE(225), - [sym_while_statement] = STATE(225), - [sym_do_statement] = STATE(225), - [sym_for_statement] = STATE(225), - [sym_return_statement] = STATE(225), - [sym_break_statement] = STATE(225), - [sym_continue_statement] = STATE(225), - [sym_goto_statement] = STATE(225), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [213] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(283), + [sym_attributed_statement] = STATE(283), + [sym_labeled_statement] = STATE(283), + [sym_expression_statement] = STATE(283), + [sym_if_statement] = STATE(283), + [sym_switch_statement] = STATE(283), + [sym_case_statement] = STATE(283), + [sym_while_statement] = STATE(283), + [sym_do_statement] = STATE(283), + [sym_for_statement] = STATE(283), + [sym_return_statement] = STATE(283), + [sym_break_statement] = STATE(283), + [sym_continue_statement] = STATE(283), + [sym_goto_statement] = STATE(283), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(1128), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29061,20 +26869,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(357), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29094,42 +26902,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [243] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(231), - [sym_attributed_statement] = STATE(231), - [sym_labeled_statement] = STATE(231), - [sym_expression_statement] = STATE(231), - [sym_if_statement] = STATE(231), - [sym_switch_statement] = STATE(231), - [sym_case_statement] = STATE(231), - [sym_while_statement] = STATE(231), - [sym_do_statement] = STATE(231), - [sym_for_statement] = STATE(231), - [sym_return_statement] = STATE(231), - [sym_break_statement] = STATE(231), - [sym_continue_statement] = STATE(231), - [sym_goto_statement] = STATE(231), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [214] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(226), + [sym_attributed_statement] = STATE(226), + [sym_labeled_statement] = STATE(226), + [sym_expression_statement] = STATE(226), + [sym_if_statement] = STATE(226), + [sym_switch_statement] = STATE(226), + [sym_case_statement] = STATE(226), + [sym_while_statement] = STATE(226), + [sym_do_statement] = STATE(226), + [sym_for_statement] = STATE(226), + [sym_return_statement] = STATE(226), + [sym_break_statement] = STATE(226), + [sym_continue_statement] = STATE(226), + [sym_goto_statement] = STATE(226), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(1128), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29137,20 +26945,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(357), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29170,159 +26978,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), + [215] = { + [ts_builtin_sym_end] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), [sym_comment] = ACTIONS(3), }, - [245] = { - [sym_identifier] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_if_token2] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(954), - [anon_sym___declspec] = ACTIONS(952), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_static] = ACTIONS(952), - [anon_sym_auto] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(952), - [anon_sym_restrict] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(952), - [anon_sym_unsigned] = ACTIONS(952), - [anon_sym_long] = ACTIONS(952), - [anon_sym_short] = ACTIONS(952), - [sym_primitive_type] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_union] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_goto] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_sizeof] = ACTIONS(952), - [sym_number_literal] = ACTIONS(954), - [anon_sym_L_SQUOTE] = ACTIONS(954), - [anon_sym_u_SQUOTE] = ACTIONS(954), - [anon_sym_U_SQUOTE] = ACTIONS(954), - [anon_sym_u8_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_L_DQUOTE] = ACTIONS(954), - [anon_sym_u_DQUOTE] = ACTIONS(954), - [anon_sym_U_DQUOTE] = ACTIONS(954), - [anon_sym_u8_DQUOTE] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), + [216] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [246] = { + [217] = { + [sym_identifier] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(894), + [aux_sym_preproc_if_token2] = ACTIONS(894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(896), + [anon_sym___declspec] = ACTIONS(894), + [anon_sym___cdecl] = ACTIONS(894), + [anon_sym___clrcall] = ACTIONS(894), + [anon_sym___stdcall] = ACTIONS(894), + [anon_sym___fastcall] = ACTIONS(894), + [anon_sym___thiscall] = ACTIONS(894), + [anon_sym___vectorcall] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(896), + [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(896), + [anon_sym_u_DQUOTE] = ACTIONS(896), + [anon_sym_U_DQUOTE] = ACTIONS(896), + [anon_sym_u8_DQUOTE] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(896), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), + [sym_comment] = ACTIONS(3), + }, + [218] = { [ts_builtin_sym_end] = ACTIONS(998), [sym_identifier] = ACTIONS(996), [aux_sym_preproc_include_token1] = ACTIONS(996), @@ -29398,42 +27282,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [247] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(303), - [sym_attributed_statement] = STATE(303), - [sym_labeled_statement] = STATE(303), - [sym_expression_statement] = STATE(303), - [sym_if_statement] = STATE(303), - [sym_switch_statement] = STATE(303), - [sym_case_statement] = STATE(303), - [sym_while_statement] = STATE(303), - [sym_do_statement] = STATE(303), - [sym_for_statement] = STATE(303), - [sym_return_statement] = STATE(303), - [sym_break_statement] = STATE(303), - [sym_continue_statement] = STATE(303), - [sym_goto_statement] = STATE(303), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [219] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(231), + [sym_attributed_statement] = STATE(231), + [sym_labeled_statement] = STATE(231), + [sym_expression_statement] = STATE(231), + [sym_if_statement] = STATE(231), + [sym_switch_statement] = STATE(231), + [sym_case_statement] = STATE(231), + [sym_while_statement] = STATE(231), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(231), + [sym_return_statement] = STATE(231), + [sym_break_statement] = STATE(231), + [sym_continue_statement] = STATE(231), + [sym_goto_statement] = STATE(231), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29441,20 +27325,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(27), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29474,42 +27358,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [248] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(246), - [sym_attributed_statement] = STATE(246), - [sym_labeled_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_case_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [220] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(235), + [sym_attributed_statement] = STATE(235), + [sym_labeled_statement] = STATE(235), + [sym_expression_statement] = STATE(235), + [sym_if_statement] = STATE(235), + [sym_switch_statement] = STATE(235), + [sym_case_statement] = STATE(235), + [sym_while_statement] = STATE(235), + [sym_do_statement] = STATE(235), + [sym_for_statement] = STATE(235), + [sym_return_statement] = STATE(235), + [sym_break_statement] = STATE(235), + [sym_continue_statement] = STATE(235), + [sym_goto_statement] = STATE(235), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29517,20 +27401,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(27), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29550,194 +27434,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [249] = { - [sym_identifier] = ACTIONS(944), - [aux_sym_preproc_include_token1] = ACTIONS(944), - [aux_sym_preproc_def_token1] = ACTIONS(944), - [aux_sym_preproc_if_token1] = ACTIONS(944), - [aux_sym_preproc_if_token2] = ACTIONS(944), - [aux_sym_preproc_ifdef_token1] = ACTIONS(944), - [aux_sym_preproc_ifdef_token2] = ACTIONS(944), - [sym_preproc_directive] = ACTIONS(944), - [anon_sym_LPAREN2] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym___attribute__] = ACTIONS(944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(944), - [anon_sym___cdecl] = ACTIONS(944), - [anon_sym___clrcall] = ACTIONS(944), - [anon_sym___stdcall] = ACTIONS(944), - [anon_sym___fastcall] = ACTIONS(944), - [anon_sym___thiscall] = ACTIONS(944), - [anon_sym___vectorcall] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_static] = ACTIONS(944), - [anon_sym_auto] = ACTIONS(944), - [anon_sym_register] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(944), - [anon_sym_restrict] = ACTIONS(944), - [anon_sym__Atomic] = ACTIONS(944), - [anon_sym_signed] = ACTIONS(944), - [anon_sym_unsigned] = ACTIONS(944), - [anon_sym_long] = ACTIONS(944), - [anon_sym_short] = ACTIONS(944), - [sym_primitive_type] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_case] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_goto] = ACTIONS(944), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(946), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(946), - [anon_sym_u_DQUOTE] = ACTIONS(946), - [anon_sym_U_DQUOTE] = ACTIONS(946), - [anon_sym_u8_DQUOTE] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [sym_null] = ACTIONS(944), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [sym_identifier] = ACTIONS(988), - [aux_sym_preproc_include_token1] = ACTIONS(988), - [aux_sym_preproc_def_token1] = ACTIONS(988), - [aux_sym_preproc_if_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(988), - [sym_preproc_directive] = ACTIONS(988), - [anon_sym_LPAREN2] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym___attribute__] = ACTIONS(988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(990), - [anon_sym___declspec] = ACTIONS(988), - [anon_sym___cdecl] = ACTIONS(988), - [anon_sym___clrcall] = ACTIONS(988), - [anon_sym___stdcall] = ACTIONS(988), - [anon_sym___fastcall] = ACTIONS(988), - [anon_sym___thiscall] = ACTIONS(988), - [anon_sym___vectorcall] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_static] = ACTIONS(988), - [anon_sym_auto] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_volatile] = ACTIONS(988), - [anon_sym_restrict] = ACTIONS(988), - [anon_sym__Atomic] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(988), - [anon_sym_unsigned] = ACTIONS(988), - [anon_sym_long] = ACTIONS(988), - [anon_sym_short] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_goto] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_sizeof] = ACTIONS(988), - [sym_number_literal] = ACTIONS(990), - [anon_sym_L_SQUOTE] = ACTIONS(990), - [anon_sym_u_SQUOTE] = ACTIONS(990), - [anon_sym_U_SQUOTE] = ACTIONS(990), - [anon_sym_u8_SQUOTE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_L_DQUOTE] = ACTIONS(990), - [anon_sym_u_DQUOTE] = ACTIONS(990), - [anon_sym_U_DQUOTE] = ACTIONS(990), - [anon_sym_u8_DQUOTE] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym_true] = ACTIONS(988), - [sym_false] = ACTIONS(988), - [sym_null] = ACTIONS(988), - [sym_comment] = ACTIONS(3), - }, - [251] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(214), - [sym_attributed_statement] = STATE(214), - [sym_labeled_statement] = STATE(214), - [sym_expression_statement] = STATE(214), - [sym_if_statement] = STATE(214), - [sym_switch_statement] = STATE(214), - [sym_case_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_do_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_return_statement] = STATE(214), - [sym_break_statement] = STATE(214), - [sym_continue_statement] = STATE(214), - [sym_goto_statement] = STATE(214), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [221] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(241), + [sym_attributed_statement] = STATE(241), + [sym_labeled_statement] = STATE(241), + [sym_expression_statement] = STATE(241), + [sym_if_statement] = STATE(241), + [sym_switch_statement] = STATE(241), + [sym_case_statement] = STATE(241), + [sym_while_statement] = STATE(241), + [sym_do_statement] = STATE(241), + [sym_for_statement] = STATE(241), + [sym_return_statement] = STATE(241), + [sym_break_statement] = STATE(241), + [sym_continue_statement] = STATE(241), + [sym_goto_statement] = STATE(241), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29745,20 +27477,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(315), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29778,346 +27510,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [252] = { - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [253] = { - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(986), - [anon_sym___declspec] = ACTIONS(984), - [anon_sym___cdecl] = ACTIONS(984), - [anon_sym___clrcall] = ACTIONS(984), - [anon_sym___stdcall] = ACTIONS(984), - [anon_sym___fastcall] = ACTIONS(984), - [anon_sym___thiscall] = ACTIONS(984), - [anon_sym___vectorcall] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_static] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_long] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_u_SQUOTE] = ACTIONS(986), - [anon_sym_U_SQUOTE] = ACTIONS(986), - [anon_sym_u8_SQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_u_DQUOTE] = ACTIONS(986), - [anon_sym_U_DQUOTE] = ACTIONS(986), - [anon_sym_u8_DQUOTE] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym_true] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - }, - [254] = { - [sym_identifier] = ACTIONS(916), - [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), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_typedef] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym___attribute__] = ACTIONS(916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(918), - [anon_sym___declspec] = ACTIONS(916), - [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(918), - [anon_sym_static] = ACTIONS(916), - [anon_sym_auto] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_inline] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [anon_sym_volatile] = ACTIONS(916), - [anon_sym_restrict] = ACTIONS(916), - [anon_sym__Atomic] = ACTIONS(916), - [anon_sym_signed] = ACTIONS(916), - [anon_sym_unsigned] = ACTIONS(916), - [anon_sym_long] = ACTIONS(916), - [anon_sym_short] = ACTIONS(916), - [sym_primitive_type] = ACTIONS(916), - [anon_sym_enum] = ACTIONS(916), - [anon_sym_struct] = ACTIONS(916), - [anon_sym_union] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(916), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_goto] = ACTIONS(916), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_sizeof] = ACTIONS(916), - [sym_number_literal] = ACTIONS(918), - [anon_sym_L_SQUOTE] = ACTIONS(918), - [anon_sym_u_SQUOTE] = ACTIONS(918), - [anon_sym_U_SQUOTE] = ACTIONS(918), - [anon_sym_u8_SQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(918), - [anon_sym_L_DQUOTE] = ACTIONS(918), - [anon_sym_u_DQUOTE] = ACTIONS(918), - [anon_sym_U_DQUOTE] = ACTIONS(918), - [anon_sym_u8_DQUOTE] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym_true] = ACTIONS(916), - [sym_false] = ACTIONS(916), - [sym_null] = ACTIONS(916), + [222] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(912), - [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), - [anon_sym_LPAREN2] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_typedef] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym___attribute__] = ACTIONS(912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(914), - [anon_sym___declspec] = ACTIONS(912), - [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(914), - [anon_sym_static] = ACTIONS(912), - [anon_sym_auto] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_inline] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_volatile] = ACTIONS(912), - [anon_sym_restrict] = ACTIONS(912), - [anon_sym__Atomic] = ACTIONS(912), - [anon_sym_signed] = ACTIONS(912), - [anon_sym_unsigned] = ACTIONS(912), - [anon_sym_long] = ACTIONS(912), - [anon_sym_short] = ACTIONS(912), - [sym_primitive_type] = ACTIONS(912), - [anon_sym_enum] = ACTIONS(912), - [anon_sym_struct] = ACTIONS(912), - [anon_sym_union] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_goto] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_sizeof] = ACTIONS(912), - [sym_number_literal] = ACTIONS(914), - [anon_sym_L_SQUOTE] = ACTIONS(914), - [anon_sym_u_SQUOTE] = ACTIONS(914), - [anon_sym_U_SQUOTE] = ACTIONS(914), - [anon_sym_u8_SQUOTE] = ACTIONS(914), - [anon_sym_SQUOTE] = ACTIONS(914), - [anon_sym_L_DQUOTE] = ACTIONS(914), - [anon_sym_u_DQUOTE] = ACTIONS(914), - [anon_sym_U_DQUOTE] = ACTIONS(914), - [anon_sym_u8_DQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [sym_null] = ACTIONS(912), + [223] = { + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(292), - [sym_attributed_statement] = STATE(292), - [sym_labeled_statement] = STATE(292), - [sym_expression_statement] = STATE(292), - [sym_if_statement] = STATE(292), - [sym_switch_statement] = STATE(292), - [sym_case_statement] = STATE(292), - [sym_while_statement] = STATE(292), - [sym_do_statement] = STATE(292), - [sym_for_statement] = STATE(292), - [sym_return_statement] = STATE(292), - [sym_break_statement] = STATE(292), - [sym_continue_statement] = STATE(292), - [sym_goto_statement] = STATE(292), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [224] = { + [sym_attribute_declaration] = STATE(232), + [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__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30158,239 +27738,468 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [225] = { + [sym_attribute_declaration] = STATE(225), + [sym_compound_statement] = STATE(82), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_case_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(1253), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_switch] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1289), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1192), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [258] = { - [sym_identifier] = ACTIONS(992), - [aux_sym_preproc_include_token1] = ACTIONS(992), - [aux_sym_preproc_def_token1] = ACTIONS(992), - [aux_sym_preproc_if_token1] = ACTIONS(992), - [aux_sym_preproc_if_token2] = ACTIONS(992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(992), - [sym_preproc_directive] = ACTIONS(992), - [anon_sym_LPAREN2] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym___attribute__] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(994), - [anon_sym___declspec] = ACTIONS(992), - [anon_sym___cdecl] = ACTIONS(992), - [anon_sym___clrcall] = ACTIONS(992), - [anon_sym___stdcall] = ACTIONS(992), - [anon_sym___fastcall] = ACTIONS(992), - [anon_sym___thiscall] = ACTIONS(992), - [anon_sym___vectorcall] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_static] = ACTIONS(992), - [anon_sym_auto] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [anon_sym_volatile] = ACTIONS(992), - [anon_sym_restrict] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(992), - [anon_sym_unsigned] = ACTIONS(992), - [anon_sym_long] = ACTIONS(992), - [anon_sym_short] = ACTIONS(992), - [sym_primitive_type] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_union] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_goto] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_sizeof] = ACTIONS(992), - [sym_number_literal] = ACTIONS(994), - [anon_sym_L_SQUOTE] = ACTIONS(994), - [anon_sym_u_SQUOTE] = ACTIONS(994), - [anon_sym_U_SQUOTE] = ACTIONS(994), - [anon_sym_u8_SQUOTE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_L_DQUOTE] = ACTIONS(994), - [anon_sym_u_DQUOTE] = ACTIONS(994), - [anon_sym_U_DQUOTE] = ACTIONS(994), - [anon_sym_u8_DQUOTE] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), + [226] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(976), - [aux_sym_preproc_def_token1] = ACTIONS(976), - [aux_sym_preproc_if_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym___attribute__] = ACTIONS(976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(978), - [anon_sym___declspec] = ACTIONS(976), - [anon_sym___cdecl] = ACTIONS(976), - [anon_sym___clrcall] = ACTIONS(976), - [anon_sym___stdcall] = ACTIONS(976), - [anon_sym___fastcall] = ACTIONS(976), - [anon_sym___thiscall] = ACTIONS(976), - [anon_sym___vectorcall] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym_signed] = ACTIONS(976), - [anon_sym_unsigned] = ACTIONS(976), - [anon_sym_long] = ACTIONS(976), - [anon_sym_short] = ACTIONS(976), - [sym_primitive_type] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_goto] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_sizeof] = ACTIONS(976), - [sym_number_literal] = ACTIONS(978), - [anon_sym_L_SQUOTE] = ACTIONS(978), - [anon_sym_u_SQUOTE] = ACTIONS(978), - [anon_sym_U_SQUOTE] = ACTIONS(978), - [anon_sym_u8_SQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_L_DQUOTE] = ACTIONS(978), - [anon_sym_u_DQUOTE] = ACTIONS(978), - [anon_sym_U_DQUOTE] = ACTIONS(978), - [anon_sym_u8_DQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym_true] = ACTIONS(976), - [sym_false] = ACTIONS(976), - [sym_null] = ACTIONS(976), + [227] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(296), + [sym_attributed_statement] = STATE(296), + [sym_labeled_statement] = STATE(296), + [sym_expression_statement] = STATE(296), + [sym_if_statement] = STATE(296), + [sym_switch_statement] = STATE(296), + [sym_case_statement] = STATE(296), + [sym_while_statement] = STATE(296), + [sym_do_statement] = STATE(296), + [sym_for_statement] = STATE(296), + [sym_return_statement] = STATE(296), + [sym_break_statement] = STATE(296), + [sym_continue_statement] = STATE(296), + [sym_goto_statement] = STATE(296), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), + [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(505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [260] = { + [228] = { + [ts_builtin_sym_end] = ACTIONS(916), + [sym_identifier] = ACTIONS(914), + [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), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [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(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [229] = { + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + }, + [230] = { + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + }, + [231] = { [sym_identifier] = ACTIONS(972), [aux_sym_preproc_include_token1] = ACTIONS(972), [aux_sym_preproc_def_token1] = ACTIONS(972), [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), [aux_sym_preproc_ifdef_token1] = ACTIONS(972), [aux_sym_preproc_ifdef_token2] = ACTIONS(972), [sym_preproc_directive] = ACTIONS(972), @@ -30414,7 +28223,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(972), [anon_sym___vectorcall] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), [anon_sym_static] = ACTIONS(972), [anon_sym_auto] = ACTIONS(972), [anon_sym_register] = ACTIONS(972), @@ -30462,42 +28270,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [261] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(218), - [sym_attributed_statement] = STATE(218), - [sym_labeled_statement] = STATE(218), - [sym_expression_statement] = STATE(218), - [sym_if_statement] = STATE(218), - [sym_switch_statement] = STATE(218), - [sym_case_statement] = STATE(218), - [sym_while_statement] = STATE(218), - [sym_do_statement] = STATE(218), - [sym_for_statement] = STATE(218), - [sym_return_statement] = STATE(218), - [sym_break_statement] = STATE(218), - [sym_continue_statement] = STATE(218), - [sym_goto_statement] = STATE(218), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [232] = { + [sym_attribute_declaration] = STATE(170), + [sym_compound_statement] = STATE(169), + [sym_attributed_statement] = STATE(169), + [sym_labeled_statement] = STATE(169), + [sym_expression_statement] = STATE(169), + [sym_if_statement] = STATE(169), + [sym_switch_statement] = STATE(169), + [sym_case_statement] = STATE(169), + [sym_while_statement] = STATE(169), + [sym_do_statement] = STATE(169), + [sym_for_statement] = STATE(169), + [sym_return_statement] = STATE(169), + [sym_break_statement] = STATE(169), + [sym_continue_statement] = STATE(169), + [sym_goto_statement] = STATE(169), + [sym__expression] = STATE(740), + [sym_comma_expression] = STATE(1438), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1128), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30505,20 +28313,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(315), + [anon_sym_SEMI] = ACTIONS(27), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), + [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_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -30538,118 +28346,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [262] = { - [sym_identifier] = ACTIONS(940), - [aux_sym_preproc_include_token1] = ACTIONS(940), - [aux_sym_preproc_def_token1] = ACTIONS(940), - [aux_sym_preproc_if_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token1] = ACTIONS(940), - [aux_sym_preproc_ifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), - [anon_sym_LPAREN2] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(940), - [anon_sym___cdecl] = ACTIONS(940), - [anon_sym___clrcall] = ACTIONS(940), - [anon_sym___stdcall] = ACTIONS(940), - [anon_sym___fastcall] = ACTIONS(940), - [anon_sym___thiscall] = ACTIONS(940), - [anon_sym___vectorcall] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_volatile] = ACTIONS(940), - [anon_sym_restrict] = ACTIONS(940), - [anon_sym__Atomic] = ACTIONS(940), - [anon_sym_signed] = ACTIONS(940), - [anon_sym_unsigned] = ACTIONS(940), - [anon_sym_long] = ACTIONS(940), - [anon_sym_short] = ACTIONS(940), - [sym_primitive_type] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(942), - [anon_sym_L_SQUOTE] = ACTIONS(942), - [anon_sym_u_SQUOTE] = ACTIONS(942), - [anon_sym_U_SQUOTE] = ACTIONS(942), - [anon_sym_u8_SQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_L_DQUOTE] = ACTIONS(942), - [anon_sym_u_DQUOTE] = ACTIONS(942), - [anon_sym_U_DQUOTE] = ACTIONS(942), - [anon_sym_u8_DQUOTE] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_true] = ACTIONS(940), - [sym_false] = ACTIONS(940), - [sym_null] = ACTIONS(940), + [233] = { + [ts_builtin_sym_end] = ACTIONS(912), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(150), - [sym_attributed_statement] = STATE(150), - [sym_labeled_statement] = STATE(150), - [sym_expression_statement] = STATE(150), - [sym_if_statement] = STATE(150), - [sym_switch_statement] = STATE(150), - [sym_case_statement] = STATE(150), - [sym_while_statement] = STATE(150), - [sym_do_statement] = STATE(150), - [sym_for_statement] = STATE(150), - [sym_return_statement] = STATE(150), - [sym_break_statement] = STATE(150), - [sym_continue_statement] = STATE(150), - [sym_goto_statement] = STATE(150), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1124), + [234] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(87), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_case_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30657,20 +28465,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(27), + [anon_sym_SEMI] = ACTIONS(109), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -30690,7 +28498,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [264] = { + [235] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [237] = { + [sym_attribute_declaration] = STATE(153), + [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__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), + [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(505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [238] = { [ts_builtin_sym_end] = ACTIONS(950), [sym_identifier] = ACTIONS(948), [aux_sym_preproc_include_token1] = ACTIONS(948), @@ -30766,118 +28802,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [265] = { - [sym_identifier] = ACTIONS(908), - [aux_sym_preproc_include_token1] = ACTIONS(908), - [aux_sym_preproc_def_token1] = ACTIONS(908), - [aux_sym_preproc_if_token1] = ACTIONS(908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(908), - [sym_preproc_directive] = ACTIONS(908), - [anon_sym_LPAREN2] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(910), - [anon_sym_TILDE] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(910), - [anon_sym_SEMI] = ACTIONS(910), - [anon_sym_typedef] = ACTIONS(908), - [anon_sym_extern] = ACTIONS(908), - [anon_sym___attribute__] = ACTIONS(908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(910), - [anon_sym___declspec] = ACTIONS(908), - [anon_sym___cdecl] = ACTIONS(908), - [anon_sym___clrcall] = ACTIONS(908), - [anon_sym___stdcall] = ACTIONS(908), - [anon_sym___fastcall] = ACTIONS(908), - [anon_sym___thiscall] = ACTIONS(908), - [anon_sym___vectorcall] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(910), - [anon_sym_static] = ACTIONS(908), - [anon_sym_auto] = ACTIONS(908), - [anon_sym_register] = ACTIONS(908), - [anon_sym_inline] = ACTIONS(908), - [anon_sym_const] = ACTIONS(908), - [anon_sym_volatile] = ACTIONS(908), - [anon_sym_restrict] = ACTIONS(908), - [anon_sym__Atomic] = ACTIONS(908), - [anon_sym_signed] = ACTIONS(908), - [anon_sym_unsigned] = ACTIONS(908), - [anon_sym_long] = ACTIONS(908), - [anon_sym_short] = ACTIONS(908), - [sym_primitive_type] = ACTIONS(908), - [anon_sym_enum] = ACTIONS(908), - [anon_sym_struct] = ACTIONS(908), - [anon_sym_union] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [anon_sym_else] = ACTIONS(908), - [anon_sym_switch] = ACTIONS(908), - [anon_sym_case] = ACTIONS(908), - [anon_sym_default] = ACTIONS(908), - [anon_sym_while] = ACTIONS(908), - [anon_sym_do] = ACTIONS(908), - [anon_sym_for] = ACTIONS(908), - [anon_sym_return] = ACTIONS(908), - [anon_sym_break] = ACTIONS(908), - [anon_sym_continue] = ACTIONS(908), - [anon_sym_goto] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(910), - [anon_sym_PLUS_PLUS] = ACTIONS(910), - [anon_sym_sizeof] = ACTIONS(908), - [sym_number_literal] = ACTIONS(910), - [anon_sym_L_SQUOTE] = ACTIONS(910), - [anon_sym_u_SQUOTE] = ACTIONS(910), - [anon_sym_U_SQUOTE] = ACTIONS(910), - [anon_sym_u8_SQUOTE] = ACTIONS(910), - [anon_sym_SQUOTE] = ACTIONS(910), - [anon_sym_L_DQUOTE] = ACTIONS(910), - [anon_sym_u_DQUOTE] = ACTIONS(910), - [anon_sym_U_DQUOTE] = ACTIONS(910), - [anon_sym_u8_DQUOTE] = ACTIONS(910), - [anon_sym_DQUOTE] = ACTIONS(910), - [sym_true] = ACTIONS(908), - [sym_false] = ACTIONS(908), - [sym_null] = ACTIONS(908), + [239] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_attribute_declaration] = STATE(270), - [sym_compound_statement] = STATE(223), - [sym_attributed_statement] = STATE(223), - [sym_labeled_statement] = STATE(223), - [sym_expression_statement] = STATE(223), - [sym_if_statement] = STATE(223), - [sym_switch_statement] = STATE(223), - [sym_case_statement] = STATE(223), - [sym_while_statement] = STATE(223), - [sym_do_statement] = STATE(223), - [sym_for_statement] = STATE(223), - [sym_return_statement] = STATE(223), - [sym_break_statement] = STATE(223), - [sym_continue_statement] = STATE(223), - [sym_goto_statement] = STATE(223), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [240] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(73), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_case_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), + [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(109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_case] = ACTIONS(121), + [anon_sym_default] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_do] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_return] = ACTIONS(131), + [anon_sym_break] = ACTIONS(133), + [anon_sym_continue] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [241] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [242] = { + [sym_attribute_declaration] = STATE(292), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1130), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30885,9 +29073,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_SEMI] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_if] = ACTIONS(323), [anon_sym_switch] = ACTIONS(325), [anon_sym_case] = ACTIONS(327), @@ -30918,422 +29106,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_identifier] = ACTIONS(904), - [aux_sym_preproc_include_token1] = ACTIONS(904), - [aux_sym_preproc_def_token1] = ACTIONS(904), - [aux_sym_preproc_if_token1] = ACTIONS(904), - [aux_sym_preproc_if_token2] = ACTIONS(904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(904), - [sym_preproc_directive] = ACTIONS(904), - [anon_sym_LPAREN2] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_typedef] = ACTIONS(904), - [anon_sym_extern] = ACTIONS(904), - [anon_sym___attribute__] = ACTIONS(904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(906), - [anon_sym___declspec] = ACTIONS(904), - [anon_sym___cdecl] = ACTIONS(904), - [anon_sym___clrcall] = ACTIONS(904), - [anon_sym___stdcall] = ACTIONS(904), - [anon_sym___fastcall] = ACTIONS(904), - [anon_sym___thiscall] = ACTIONS(904), - [anon_sym___vectorcall] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_static] = ACTIONS(904), - [anon_sym_auto] = ACTIONS(904), - [anon_sym_register] = ACTIONS(904), - [anon_sym_inline] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_volatile] = ACTIONS(904), - [anon_sym_restrict] = ACTIONS(904), - [anon_sym__Atomic] = ACTIONS(904), - [anon_sym_signed] = ACTIONS(904), - [anon_sym_unsigned] = ACTIONS(904), - [anon_sym_long] = ACTIONS(904), - [anon_sym_short] = ACTIONS(904), - [sym_primitive_type] = ACTIONS(904), - [anon_sym_enum] = ACTIONS(904), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_union] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_else] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(904), - [anon_sym_case] = ACTIONS(904), - [anon_sym_default] = ACTIONS(904), - [anon_sym_while] = ACTIONS(904), - [anon_sym_do] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_goto] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_L_SQUOTE] = ACTIONS(906), - [anon_sym_u_SQUOTE] = ACTIONS(906), - [anon_sym_U_SQUOTE] = ACTIONS(906), - [anon_sym_u8_SQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_L_DQUOTE] = ACTIONS(906), - [anon_sym_u_DQUOTE] = ACTIONS(906), - [anon_sym_U_DQUOTE] = ACTIONS(906), - [anon_sym_u8_DQUOTE] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [sym_null] = ACTIONS(904), - [sym_comment] = ACTIONS(3), - }, - [268] = { - [sym_identifier] = ACTIONS(890), - [aux_sym_preproc_include_token1] = ACTIONS(890), - [aux_sym_preproc_def_token1] = ACTIONS(890), - [aux_sym_preproc_if_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(890), - [sym_preproc_directive] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym___attribute__] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(892), - [anon_sym___declspec] = ACTIONS(890), - [anon_sym___cdecl] = ACTIONS(890), - [anon_sym___clrcall] = ACTIONS(890), - [anon_sym___stdcall] = ACTIONS(890), - [anon_sym___fastcall] = ACTIONS(890), - [anon_sym___thiscall] = ACTIONS(890), - [anon_sym___vectorcall] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_static] = ACTIONS(890), - [anon_sym_auto] = ACTIONS(890), - [anon_sym_register] = ACTIONS(890), - [anon_sym_inline] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_volatile] = ACTIONS(890), - [anon_sym_restrict] = ACTIONS(890), - [anon_sym__Atomic] = ACTIONS(890), - [anon_sym_signed] = ACTIONS(890), - [anon_sym_unsigned] = ACTIONS(890), - [anon_sym_long] = ACTIONS(890), - [anon_sym_short] = ACTIONS(890), - [sym_primitive_type] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_else] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_case] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_goto] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(890), - [sym_number_literal] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(892), - [anon_sym_u_SQUOTE] = ACTIONS(892), - [anon_sym_U_SQUOTE] = ACTIONS(892), - [anon_sym_u8_SQUOTE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_L_DQUOTE] = ACTIONS(892), - [anon_sym_u_DQUOTE] = ACTIONS(892), - [anon_sym_U_DQUOTE] = ACTIONS(892), - [anon_sym_u8_DQUOTE] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(892), - [sym_true] = ACTIONS(890), - [sym_false] = ACTIONS(890), - [sym_null] = ACTIONS(890), - [sym_comment] = ACTIONS(3), - }, - [269] = { - [sym_identifier] = ACTIONS(896), - [aux_sym_preproc_include_token1] = ACTIONS(896), - [aux_sym_preproc_def_token1] = ACTIONS(896), - [aux_sym_preproc_if_token1] = ACTIONS(896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(896), - [sym_preproc_directive] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_typedef] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), - [anon_sym___attribute__] = ACTIONS(896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(898), - [anon_sym___declspec] = ACTIONS(896), - [anon_sym___cdecl] = ACTIONS(896), - [anon_sym___clrcall] = ACTIONS(896), - [anon_sym___stdcall] = ACTIONS(896), - [anon_sym___fastcall] = ACTIONS(896), - [anon_sym___thiscall] = ACTIONS(896), - [anon_sym___vectorcall] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(898), - [anon_sym_static] = ACTIONS(896), - [anon_sym_auto] = ACTIONS(896), - [anon_sym_register] = ACTIONS(896), - [anon_sym_inline] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_volatile] = ACTIONS(896), - [anon_sym_restrict] = ACTIONS(896), - [anon_sym__Atomic] = ACTIONS(896), - [anon_sym_signed] = ACTIONS(896), - [anon_sym_unsigned] = ACTIONS(896), - [anon_sym_long] = ACTIONS(896), - [anon_sym_short] = ACTIONS(896), - [sym_primitive_type] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_union] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_case] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_goto] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_sizeof] = ACTIONS(896), - [sym_number_literal] = ACTIONS(898), - [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(898), - [anon_sym_u_DQUOTE] = ACTIONS(898), - [anon_sym_U_DQUOTE] = ACTIONS(898), - [anon_sym_u8_DQUOTE] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(898), - [sym_true] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_null] = ACTIONS(896), - [sym_comment] = ACTIONS(3), - }, - [270] = { - [sym_attribute_declaration] = STATE(236), - [sym_compound_statement] = STATE(245), - [sym_attributed_statement] = STATE(245), - [sym_labeled_statement] = STATE(245), - [sym_expression_statement] = STATE(245), - [sym_if_statement] = STATE(245), - [sym_switch_statement] = STATE(245), - [sym_case_statement] = STATE(245), - [sym_while_statement] = STATE(245), - [sym_do_statement] = STATE(245), - [sym_for_statement] = STATE(245), - [sym_return_statement] = STATE(245), - [sym_break_statement] = STATE(245), - [sym_continue_statement] = STATE(245), - [sym_goto_statement] = STATE(245), - [sym__expression] = STATE(735), - [sym_comma_expression] = STATE(1320), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1130), - [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(315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_if] = ACTIONS(323), - [anon_sym_switch] = ACTIONS(325), - [anon_sym_case] = ACTIONS(327), - [anon_sym_default] = ACTIONS(329), - [anon_sym_while] = ACTIONS(331), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(902), - [sym_identifier] = ACTIONS(900), - [aux_sym_preproc_include_token1] = ACTIONS(900), - [aux_sym_preproc_def_token1] = ACTIONS(900), - [aux_sym_preproc_if_token1] = ACTIONS(900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(900), - [sym_preproc_directive] = ACTIONS(900), - [anon_sym_LPAREN2] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_TILDE] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_typedef] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym___attribute__] = ACTIONS(900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(902), - [anon_sym___declspec] = ACTIONS(900), - [anon_sym___cdecl] = ACTIONS(900), - [anon_sym___clrcall] = ACTIONS(900), - [anon_sym___stdcall] = ACTIONS(900), - [anon_sym___fastcall] = ACTIONS(900), - [anon_sym___thiscall] = ACTIONS(900), - [anon_sym___vectorcall] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(902), - [anon_sym_static] = ACTIONS(900), - [anon_sym_auto] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_inline] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [anon_sym_volatile] = ACTIONS(900), - [anon_sym_restrict] = ACTIONS(900), - [anon_sym__Atomic] = ACTIONS(900), - [anon_sym_signed] = ACTIONS(900), - [anon_sym_unsigned] = ACTIONS(900), - [anon_sym_long] = ACTIONS(900), - [anon_sym_short] = ACTIONS(900), - [sym_primitive_type] = ACTIONS(900), - [anon_sym_enum] = ACTIONS(900), - [anon_sym_struct] = ACTIONS(900), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(900), - [anon_sym_default] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_goto] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(900), - [sym_number_literal] = ACTIONS(902), - [anon_sym_L_SQUOTE] = ACTIONS(902), - [anon_sym_u_SQUOTE] = ACTIONS(902), - [anon_sym_U_SQUOTE] = ACTIONS(902), - [anon_sym_u8_SQUOTE] = ACTIONS(902), - [anon_sym_SQUOTE] = ACTIONS(902), - [anon_sym_L_DQUOTE] = ACTIONS(902), - [anon_sym_u_DQUOTE] = ACTIONS(902), - [anon_sym_U_DQUOTE] = ACTIONS(902), - [anon_sym_u8_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym_true] = ACTIONS(900), - [sym_false] = ACTIONS(900), - [sym_null] = ACTIONS(900), - [sym_comment] = ACTIONS(3), - }, - [272] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(92), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [243] = { + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(75), + [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_case_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__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31374,42 +29182,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(253), - [sym_attributed_statement] = STATE(253), - [sym_labeled_statement] = STATE(253), - [sym_expression_statement] = STATE(253), - [sym_if_statement] = STATE(253), - [sym_switch_statement] = STATE(253), - [sym_case_statement] = STATE(253), - [sym_while_statement] = STATE(253), - [sym_do_statement] = STATE(253), - [sym_for_statement] = STATE(253), - [sym_return_statement] = STATE(253), - [sym_break_statement] = STATE(253), - [sym_continue_statement] = STATE(253), - [sym_goto_statement] = STATE(253), - [sym__expression] = STATE(717), - [sym_comma_expression] = STATE(1327), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [244] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(299), + [sym_attributed_statement] = STATE(299), + [sym_labeled_statement] = STATE(299), + [sym_expression_statement] = STATE(299), + [sym_if_statement] = STATE(299), + [sym_switch_statement] = STATE(299), + [sym_case_statement] = STATE(299), + [sym_while_statement] = STATE(299), + [sym_do_statement] = STATE(299), + [sym_for_statement] = STATE(299), + [sym_return_statement] = STATE(299), + [sym_break_statement] = STATE(299), + [sym_continue_statement] = STATE(299), + [sym_goto_statement] = STATE(299), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(1128), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31417,20 +29225,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(357), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_if] = ACTIONS(367), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_case] = ACTIONS(371), - [anon_sym_default] = ACTIONS(373), - [anon_sym_while] = ACTIONS(375), - [anon_sym_do] = ACTIONS(377), - [anon_sym_for] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_goto] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31450,194 +29258,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [274] = { - [sym_identifier] = ACTIONS(900), - [aux_sym_preproc_include_token1] = ACTIONS(900), - [aux_sym_preproc_def_token1] = ACTIONS(900), - [aux_sym_preproc_if_token1] = ACTIONS(900), - [aux_sym_preproc_if_token2] = ACTIONS(900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(900), - [sym_preproc_directive] = ACTIONS(900), - [anon_sym_LPAREN2] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_TILDE] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_typedef] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym___attribute__] = ACTIONS(900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(902), - [anon_sym___declspec] = ACTIONS(900), - [anon_sym___cdecl] = ACTIONS(900), - [anon_sym___clrcall] = ACTIONS(900), - [anon_sym___stdcall] = ACTIONS(900), - [anon_sym___fastcall] = ACTIONS(900), - [anon_sym___thiscall] = ACTIONS(900), - [anon_sym___vectorcall] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(902), - [anon_sym_static] = ACTIONS(900), - [anon_sym_auto] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_inline] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [anon_sym_volatile] = ACTIONS(900), - [anon_sym_restrict] = ACTIONS(900), - [anon_sym__Atomic] = ACTIONS(900), - [anon_sym_signed] = ACTIONS(900), - [anon_sym_unsigned] = ACTIONS(900), - [anon_sym_long] = ACTIONS(900), - [anon_sym_short] = ACTIONS(900), - [sym_primitive_type] = ACTIONS(900), - [anon_sym_enum] = ACTIONS(900), - [anon_sym_struct] = ACTIONS(900), - [anon_sym_union] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(900), - [anon_sym_default] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_goto] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_sizeof] = ACTIONS(900), - [sym_number_literal] = ACTIONS(902), - [anon_sym_L_SQUOTE] = ACTIONS(902), - [anon_sym_u_SQUOTE] = ACTIONS(902), - [anon_sym_U_SQUOTE] = ACTIONS(902), - [anon_sym_u8_SQUOTE] = ACTIONS(902), - [anon_sym_SQUOTE] = ACTIONS(902), - [anon_sym_L_DQUOTE] = ACTIONS(902), - [anon_sym_u_DQUOTE] = ACTIONS(902), - [anon_sym_U_DQUOTE] = ACTIONS(902), - [anon_sym_u8_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym_true] = ACTIONS(900), - [sym_false] = ACTIONS(900), - [sym_null] = ACTIONS(900), + [245] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token2] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(922), - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), + [246] = { + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(86), - [sym_attributed_statement] = STATE(86), - [sym_labeled_statement] = STATE(86), - [sym_expression_statement] = STATE(86), - [sym_if_statement] = STATE(86), - [sym_switch_statement] = STATE(86), - [sym_case_statement] = STATE(86), - [sym_while_statement] = STATE(86), - [sym_do_statement] = STATE(86), - [sym_for_statement] = STATE(86), - [sym_return_statement] = STATE(86), - [sym_break_statement] = STATE(86), - [sym_continue_statement] = STATE(86), - [sym_goto_statement] = STATE(86), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [247] = { + [sym_attribute_declaration] = STATE(225), + [sym_compound_statement] = STATE(82), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_case_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1451), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(1209), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31678,118 +29486,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(906), - [sym_identifier] = ACTIONS(904), - [aux_sym_preproc_include_token1] = ACTIONS(904), - [aux_sym_preproc_def_token1] = ACTIONS(904), - [aux_sym_preproc_if_token1] = ACTIONS(904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(904), - [sym_preproc_directive] = ACTIONS(904), - [anon_sym_LPAREN2] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_typedef] = ACTIONS(904), - [anon_sym_extern] = ACTIONS(904), - [anon_sym___attribute__] = ACTIONS(904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(906), - [anon_sym___declspec] = ACTIONS(904), - [anon_sym___cdecl] = ACTIONS(904), - [anon_sym___clrcall] = ACTIONS(904), - [anon_sym___stdcall] = ACTIONS(904), - [anon_sym___fastcall] = ACTIONS(904), - [anon_sym___thiscall] = ACTIONS(904), - [anon_sym___vectorcall] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_static] = ACTIONS(904), - [anon_sym_auto] = ACTIONS(904), - [anon_sym_register] = ACTIONS(904), - [anon_sym_inline] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_volatile] = ACTIONS(904), - [anon_sym_restrict] = ACTIONS(904), - [anon_sym__Atomic] = ACTIONS(904), - [anon_sym_signed] = ACTIONS(904), - [anon_sym_unsigned] = ACTIONS(904), - [anon_sym_long] = ACTIONS(904), - [anon_sym_short] = ACTIONS(904), - [sym_primitive_type] = ACTIONS(904), - [anon_sym_enum] = ACTIONS(904), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_union] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_else] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(904), - [anon_sym_case] = ACTIONS(904), - [anon_sym_default] = ACTIONS(904), - [anon_sym_while] = ACTIONS(904), - [anon_sym_do] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_goto] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_sizeof] = ACTIONS(904), - [sym_number_literal] = ACTIONS(906), - [anon_sym_L_SQUOTE] = ACTIONS(906), - [anon_sym_u_SQUOTE] = ACTIONS(906), - [anon_sym_U_SQUOTE] = ACTIONS(906), - [anon_sym_u8_SQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_L_DQUOTE] = ACTIONS(906), - [anon_sym_u_DQUOTE] = ACTIONS(906), - [anon_sym_U_DQUOTE] = ACTIONS(906), - [anon_sym_u8_DQUOTE] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [sym_null] = ACTIONS(904), + [248] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [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(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [278] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(1422), - [sym_attributed_statement] = STATE(1422), - [sym_labeled_statement] = STATE(1422), - [sym_expression_statement] = STATE(1422), - [sym_if_statement] = STATE(1422), - [sym_switch_statement] = STATE(1422), - [sym_case_statement] = STATE(1422), - [sym_while_statement] = STATE(1422), - [sym_do_statement] = STATE(1422), - [sym_for_statement] = STATE(1422), - [sym_return_statement] = STATE(1422), - [sym_break_statement] = STATE(1422), - [sym_continue_statement] = STATE(1422), - [sym_goto_statement] = STATE(1422), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [249] = { + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(199), + [sym_attributed_statement] = STATE(199), + [sym_labeled_statement] = STATE(199), + [sym_expression_statement] = STATE(199), + [sym_if_statement] = STATE(199), + [sym_switch_statement] = STATE(199), + [sym_case_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_do_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_return_statement] = STATE(199), + [sym_break_statement] = STATE(199), + [sym_continue_statement] = STATE(199), + [sym_goto_statement] = STATE(199), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31797,20 +29605,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(27), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -31830,84 +29638,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym___attribute__] = ACTIONS(920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(922), - [anon_sym___declspec] = ACTIONS(920), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_static] = ACTIONS(920), - [anon_sym_auto] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_volatile] = ACTIONS(920), - [anon_sym_restrict] = ACTIONS(920), - [anon_sym__Atomic] = ACTIONS(920), - [anon_sym_signed] = ACTIONS(920), - [anon_sym_unsigned] = ACTIONS(920), - [anon_sym_long] = ACTIONS(920), - [anon_sym_short] = ACTIONS(920), - [sym_primitive_type] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_struct] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_goto] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_sizeof] = ACTIONS(920), - [sym_number_literal] = ACTIONS(922), - [anon_sym_L_SQUOTE] = ACTIONS(922), - [anon_sym_u_SQUOTE] = ACTIONS(922), - [anon_sym_U_SQUOTE] = ACTIONS(922), - [anon_sym_u8_SQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [anon_sym_L_DQUOTE] = ACTIONS(922), - [anon_sym_u_DQUOTE] = ACTIONS(922), - [anon_sym_U_DQUOTE] = ACTIONS(922), - [anon_sym_u8_DQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), + [250] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1006), + [251] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), + [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(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [252] = { [sym_identifier] = ACTIONS(1004), [aux_sym_preproc_include_token1] = ACTIONS(1004), [aux_sym_preproc_def_token1] = ACTIONS(1004), @@ -31935,6 +29818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1004), [anon_sym___vectorcall] = ACTIONS(1004), [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), [anon_sym_static] = ACTIONS(1004), [anon_sym_auto] = ACTIONS(1004), [anon_sym_register] = ACTIONS(1004), @@ -31982,42 +29866,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(87), - [sym_attributed_statement] = STATE(87), - [sym_labeled_statement] = STATE(87), - [sym_expression_statement] = STATE(87), - [sym_if_statement] = STATE(87), - [sym_switch_statement] = STATE(87), - [sym_case_statement] = STATE(87), - [sym_while_statement] = STATE(87), - [sym_do_statement] = STATE(87), - [sym_for_statement] = STATE(87), - [sym_return_statement] = STATE(87), - [sym_break_statement] = STATE(87), - [sym_continue_statement] = STATE(87), - [sym_goto_statement] = STATE(87), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [253] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [255] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [256] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(252), + [sym_attributed_statement] = STATE(252), + [sym_labeled_statement] = STATE(252), + [sym_expression_statement] = STATE(252), + [sym_if_statement] = STATE(252), + [sym_switch_statement] = STATE(252), + [sym_case_statement] = STATE(252), + [sym_while_statement] = STATE(252), + [sym_do_statement] = STATE(252), + [sym_for_statement] = STATE(252), + [sym_return_statement] = STATE(252), + [sym_break_statement] = STATE(252), + [sym_continue_statement] = STATE(252), + [sym_goto_statement] = STATE(252), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32025,20 +30137,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(109), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32058,42 +30170,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [282] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(88), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_case_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [257] = { + [ts_builtin_sym_end] = ACTIONS(900), + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(297), + [sym_attributed_statement] = STATE(297), + [sym_labeled_statement] = STATE(297), + [sym_expression_statement] = STATE(297), + [sym_if_statement] = STATE(297), + [sym_switch_statement] = STATE(297), + [sym_case_statement] = STATE(297), + [sym_while_statement] = STATE(297), + [sym_do_statement] = STATE(297), + [sym_for_statement] = STATE(297), + [sym_return_statement] = STATE(297), + [sym_break_statement] = STATE(297), + [sym_continue_statement] = STATE(297), + [sym_goto_statement] = STATE(297), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32101,20 +30289,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(109), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32134,41 +30322,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(190), - [sym_attributed_statement] = STATE(190), - [sym_labeled_statement] = STATE(190), - [sym_expression_statement] = STATE(190), - [sym_if_statement] = STATE(190), - [sym_switch_statement] = STATE(190), - [sym_case_statement] = STATE(190), - [sym_while_statement] = STATE(190), - [sym_do_statement] = STATE(190), - [sym_for_statement] = STATE(190), - [sym_return_statement] = STATE(190), - [sym_break_statement] = STATE(190), - [sym_continue_statement] = STATE(190), - [sym_goto_statement] = STATE(190), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [259] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(253), + [sym_attributed_statement] = STATE(253), + [sym_labeled_statement] = STATE(253), + [sym_expression_statement] = STATE(253), + [sym_if_statement] = STATE(253), + [sym_switch_statement] = STATE(253), + [sym_case_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_do_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(253), + [sym_continue_statement] = STATE(253), + [sym_goto_statement] = STATE(253), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -32177,20 +30365,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(27), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32210,194 +30398,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_identifier] = ACTIONS(936), - [aux_sym_preproc_include_token1] = ACTIONS(936), - [aux_sym_preproc_def_token1] = ACTIONS(936), - [aux_sym_preproc_if_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token1] = ACTIONS(936), - [aux_sym_preproc_ifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), - [anon_sym_LPAREN2] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_typedef] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(938), - [anon_sym___declspec] = ACTIONS(936), - [anon_sym___cdecl] = ACTIONS(936), - [anon_sym___clrcall] = ACTIONS(936), - [anon_sym___stdcall] = ACTIONS(936), - [anon_sym___fastcall] = ACTIONS(936), - [anon_sym___thiscall] = ACTIONS(936), - [anon_sym___vectorcall] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(936), - [anon_sym_restrict] = ACTIONS(936), - [anon_sym__Atomic] = ACTIONS(936), - [anon_sym_signed] = ACTIONS(936), - [anon_sym_unsigned] = ACTIONS(936), - [anon_sym_long] = ACTIONS(936), - [anon_sym_short] = ACTIONS(936), - [sym_primitive_type] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_goto] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_sizeof] = ACTIONS(936), - [sym_number_literal] = ACTIONS(938), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(938), - [anon_sym_u_DQUOTE] = ACTIONS(938), - [anon_sym_U_DQUOTE] = ACTIONS(938), - [anon_sym_u8_DQUOTE] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - }, - [285] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - }, - [286] = { - [sym_attribute_declaration] = STATE(185), - [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__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [260] = { + [sym_attribute_declaration] = STATE(242), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -32405,20 +30441,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(109), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32438,117 +30474,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [287] = { - [sym_identifier] = ACTIONS(932), - [aux_sym_preproc_include_token1] = ACTIONS(932), - [aux_sym_preproc_def_token1] = ACTIONS(932), - [aux_sym_preproc_if_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(932), - [aux_sym_preproc_ifdef_token2] = ACTIONS(932), - [sym_preproc_directive] = ACTIONS(932), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym___attribute__] = ACTIONS(932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(934), - [anon_sym___declspec] = ACTIONS(932), - [anon_sym___cdecl] = ACTIONS(932), - [anon_sym___clrcall] = ACTIONS(932), - [anon_sym___stdcall] = ACTIONS(932), - [anon_sym___fastcall] = ACTIONS(932), - [anon_sym___thiscall] = ACTIONS(932), - [anon_sym___vectorcall] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_static] = ACTIONS(932), - [anon_sym_auto] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_volatile] = ACTIONS(932), - [anon_sym_restrict] = ACTIONS(932), - [anon_sym__Atomic] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(932), - [anon_sym_unsigned] = ACTIONS(932), - [anon_sym_long] = ACTIONS(932), - [anon_sym_short] = ACTIONS(932), - [sym_primitive_type] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_goto] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_sizeof] = ACTIONS(932), - [sym_number_literal] = ACTIONS(934), - [anon_sym_L_SQUOTE] = ACTIONS(934), - [anon_sym_u_SQUOTE] = ACTIONS(934), - [anon_sym_U_SQUOTE] = ACTIONS(934), - [anon_sym_u8_SQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_L_DQUOTE] = ACTIONS(934), - [anon_sym_u_DQUOTE] = ACTIONS(934), - [anon_sym_U_DQUOTE] = ACTIONS(934), - [anon_sym_u8_DQUOTE] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym_true] = ACTIONS(932), - [sym_false] = ACTIONS(932), - [sym_null] = ACTIONS(932), + [261] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(195), - [sym_attributed_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_case_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [sym_do_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [262] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(254), + [sym_attributed_statement] = STATE(254), + [sym_labeled_statement] = STATE(254), + [sym_expression_statement] = STATE(254), + [sym_if_statement] = STATE(254), + [sym_switch_statement] = STATE(254), + [sym_case_statement] = STATE(254), + [sym_while_statement] = STATE(254), + [sym_do_statement] = STATE(254), + [sym_for_statement] = STATE(254), + [sym_return_statement] = STATE(254), + [sym_break_statement] = STATE(254), + [sym_continue_statement] = STATE(254), + [sym_goto_statement] = STATE(254), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -32557,20 +30593,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(27), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32590,41 +30626,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(197), - [sym_attributed_statement] = STATE(197), - [sym_labeled_statement] = STATE(197), - [sym_expression_statement] = STATE(197), - [sym_if_statement] = STATE(197), - [sym_switch_statement] = STATE(197), - [sym_case_statement] = STATE(197), - [sym_while_statement] = STATE(197), - [sym_do_statement] = STATE(197), - [sym_for_statement] = STATE(197), - [sym_return_statement] = STATE(197), - [sym_break_statement] = STATE(197), - [sym_continue_statement] = STATE(197), - [sym_goto_statement] = STATE(197), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [263] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [264] = { + [ts_builtin_sym_end] = ACTIONS(900), + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [266] = { + [sym_attribute_declaration] = STATE(242), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -32633,20 +30897,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(27), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -32666,87 +30930,2444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_identifier] = ACTIONS(948), - [aux_sym_preproc_include_token1] = ACTIONS(948), - [aux_sym_preproc_def_token1] = ACTIONS(948), - [aux_sym_preproc_if_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(948), - [aux_sym_preproc_ifdef_token2] = ACTIONS(948), - [sym_preproc_directive] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym___attribute__] = ACTIONS(948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(950), - [anon_sym___declspec] = ACTIONS(948), - [anon_sym___cdecl] = ACTIONS(948), - [anon_sym___clrcall] = ACTIONS(948), - [anon_sym___stdcall] = ACTIONS(948), - [anon_sym___fastcall] = ACTIONS(948), - [anon_sym___thiscall] = ACTIONS(948), - [anon_sym___vectorcall] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_static] = ACTIONS(948), - [anon_sym_auto] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_volatile] = ACTIONS(948), - [anon_sym_restrict] = ACTIONS(948), - [anon_sym__Atomic] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(948), - [anon_sym_unsigned] = ACTIONS(948), - [anon_sym_long] = ACTIONS(948), - [anon_sym_short] = ACTIONS(948), - [sym_primitive_type] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_goto] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(948), - [sym_number_literal] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(950), - [anon_sym_u_SQUOTE] = ACTIONS(950), - [anon_sym_U_SQUOTE] = ACTIONS(950), - [anon_sym_u8_SQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_L_DQUOTE] = ACTIONS(950), - [anon_sym_u_DQUOTE] = ACTIONS(950), - [anon_sym_U_DQUOTE] = ACTIONS(950), - [anon_sym_u8_DQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), + [267] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [268] = { + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(261), + [sym_attributed_statement] = STATE(261), + [sym_labeled_statement] = STATE(261), + [sym_expression_statement] = STATE(261), + [sym_if_statement] = STATE(261), + [sym_switch_statement] = STATE(261), + [sym_case_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_do_statement] = STATE(261), + [sym_for_statement] = STATE(261), + [sym_return_statement] = STATE(261), + [sym_break_statement] = STATE(261), + [sym_continue_statement] = STATE(261), + [sym_goto_statement] = STATE(261), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), + [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(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [270] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(263), + [sym_attributed_statement] = STATE(263), + [sym_labeled_statement] = STATE(263), + [sym_expression_statement] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(263), + [sym_case_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_do_statement] = STATE(263), + [sym_for_statement] = STATE(263), + [sym_return_statement] = STATE(263), + [sym_break_statement] = STATE(263), + [sym_continue_statement] = STATE(263), + [sym_goto_statement] = STATE(263), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), + [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(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(265), + [sym_attributed_statement] = STATE(265), + [sym_labeled_statement] = STATE(265), + [sym_expression_statement] = STATE(265), + [sym_if_statement] = STATE(265), + [sym_switch_statement] = STATE(265), + [sym_case_statement] = STATE(265), + [sym_while_statement] = STATE(265), + [sym_do_statement] = STATE(265), + [sym_for_statement] = STATE(265), + [sym_return_statement] = STATE(265), + [sym_break_statement] = STATE(265), + [sym_continue_statement] = STATE(265), + [sym_goto_statement] = STATE(265), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), + [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(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [272] = { + [sym_identifier] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(894), + [sym_preproc_directive] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(896), + [anon_sym___declspec] = ACTIONS(894), + [anon_sym___cdecl] = ACTIONS(894), + [anon_sym___clrcall] = ACTIONS(894), + [anon_sym___stdcall] = ACTIONS(894), + [anon_sym___fastcall] = ACTIONS(894), + [anon_sym___thiscall] = ACTIONS(894), + [anon_sym___vectorcall] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_static] = ACTIONS(894), + [anon_sym_auto] = ACTIONS(894), + [anon_sym_register] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_restrict] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [sym_primitive_type] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_goto] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_sizeof] = ACTIONS(894), + [sym_number_literal] = ACTIONS(896), + [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(896), + [anon_sym_u_DQUOTE] = ACTIONS(896), + [anon_sym_U_DQUOTE] = ACTIONS(896), + [anon_sym_u8_DQUOTE] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(896), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), + [sym_comment] = ACTIONS(3), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(268), + [sym_attributed_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), + [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(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [277] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + }, + [278] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(272), + [sym_attributed_statement] = STATE(272), + [sym_labeled_statement] = STATE(272), + [sym_expression_statement] = STATE(272), + [sym_if_statement] = STATE(272), + [sym_switch_statement] = STATE(272), + [sym_case_statement] = STATE(272), + [sym_while_statement] = STATE(272), + [sym_do_statement] = STATE(272), + [sym_for_statement] = STATE(272), + [sym_return_statement] = STATE(272), + [sym_break_statement] = STATE(272), + [sym_continue_statement] = STATE(272), + [sym_goto_statement] = STATE(272), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), + [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(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(275), + [sym_attributed_statement] = STATE(275), + [sym_labeled_statement] = STATE(275), + [sym_expression_statement] = STATE(275), + [sym_if_statement] = STATE(275), + [sym_switch_statement] = STATE(275), + [sym_case_statement] = STATE(275), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(275), + [sym_for_statement] = STATE(275), + [sym_return_statement] = STATE(275), + [sym_break_statement] = STATE(275), + [sym_continue_statement] = STATE(275), + [sym_goto_statement] = STATE(275), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), + [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(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [280] = { + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), + [sym_comment] = ACTIONS(3), + }, + [281] = { + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [285] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [286] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [ts_builtin_sym_end] = ACTIONS(904), + [sym_identifier] = ACTIONS(902), + [aux_sym_preproc_include_token1] = ACTIONS(902), + [aux_sym_preproc_def_token1] = ACTIONS(902), + [aux_sym_preproc_if_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(902), + [sym_preproc_directive] = ACTIONS(902), + [anon_sym_LPAREN2] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_typedef] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym___attribute__] = ACTIONS(902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(904), + [anon_sym___declspec] = ACTIONS(902), + [anon_sym___cdecl] = ACTIONS(902), + [anon_sym___clrcall] = ACTIONS(902), + [anon_sym___stdcall] = ACTIONS(902), + [anon_sym___fastcall] = ACTIONS(902), + [anon_sym___thiscall] = ACTIONS(902), + [anon_sym___vectorcall] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_static] = ACTIONS(902), + [anon_sym_auto] = ACTIONS(902), + [anon_sym_register] = ACTIONS(902), + [anon_sym_inline] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_restrict] = ACTIONS(902), + [anon_sym__Atomic] = ACTIONS(902), + [anon_sym_signed] = ACTIONS(902), + [anon_sym_unsigned] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [sym_primitive_type] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_goto] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_sizeof] = ACTIONS(902), + [sym_number_literal] = ACTIONS(904), + [anon_sym_L_SQUOTE] = ACTIONS(904), + [anon_sym_u_SQUOTE] = ACTIONS(904), + [anon_sym_U_SQUOTE] = ACTIONS(904), + [anon_sym_u8_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_L_DQUOTE] = ACTIONS(904), + [anon_sym_u_DQUOTE] = ACTIONS(904), + [anon_sym_U_DQUOTE] = ACTIONS(904), + [anon_sym_u8_DQUOTE] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(904), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + }, + [288] = { + [sym_attribute_declaration] = STATE(242), + [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__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), + [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(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [sym_number_literal] = ACTIONS(83), + [anon_sym_L_SQUOTE] = ACTIONS(85), + [anon_sym_u_SQUOTE] = ACTIONS(85), + [anon_sym_U_SQUOTE] = ACTIONS(85), + [anon_sym_u8_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_L_DQUOTE] = ACTIONS(87), + [anon_sym_u_DQUOTE] = ACTIONS(87), + [anon_sym_U_DQUOTE] = ACTIONS(87), + [anon_sym_u8_DQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE] = ACTIONS(87), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + }, + [289] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + }, + [290] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + }, + [291] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + }, + [292] = { + [sym_attribute_declaration] = STATE(292), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(609), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(609), + [sym_call_expression] = STATE(609), + [sym_field_expression] = STATE(609), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(609), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1297), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1309), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1192), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + }, + [293] = { + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), + [sym_comment] = ACTIONS(3), + }, + [294] = { + [sym_identifier] = ACTIONS(890), + [aux_sym_preproc_include_token1] = ACTIONS(890), + [aux_sym_preproc_def_token1] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(890), + [sym_preproc_directive] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym___attribute__] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(892), + [anon_sym___declspec] = ACTIONS(890), + [anon_sym___cdecl] = ACTIONS(890), + [anon_sym___clrcall] = ACTIONS(890), + [anon_sym___stdcall] = ACTIONS(890), + [anon_sym___fastcall] = ACTIONS(890), + [anon_sym___thiscall] = ACTIONS(890), + [anon_sym___vectorcall] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_static] = ACTIONS(890), + [anon_sym_auto] = ACTIONS(890), + [anon_sym_register] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_restrict] = ACTIONS(890), + [anon_sym__Atomic] = ACTIONS(890), + [anon_sym_signed] = ACTIONS(890), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [sym_primitive_type] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(890), + [sym_number_literal] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(892), + [anon_sym_u_SQUOTE] = ACTIONS(892), + [anon_sym_U_SQUOTE] = ACTIONS(892), + [anon_sym_u8_SQUOTE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(892), + [anon_sym_L_DQUOTE] = ACTIONS(892), + [anon_sym_u_DQUOTE] = ACTIONS(892), + [anon_sym_U_DQUOTE] = ACTIONS(892), + [anon_sym_u8_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(892), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(890), + [sym_comment] = ACTIONS(3), + }, + [295] = { + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [296] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [297] = { + [sym_identifier] = ACTIONS(914), + [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), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [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(916), + [anon_sym_RBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [298] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, - [291] = { + [299] = { [sym_identifier] = ACTIONS(996), [aux_sym_preproc_include_token1] = ACTIONS(996), [aux_sym_preproc_def_token1] = ACTIONS(996), [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), [aux_sym_preproc_ifdef_token1] = ACTIONS(996), [aux_sym_preproc_ifdef_token2] = ACTIONS(996), [sym_preproc_directive] = ACTIONS(996), @@ -32770,7 +33391,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(996), [anon_sym___vectorcall] = ACTIONS(996), [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), [anon_sym_static] = ACTIONS(996), [anon_sym_auto] = ACTIONS(996), [anon_sym_register] = ACTIONS(996), @@ -32783,685 +33403,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(996), [anon_sym_long] = ACTIONS(996), [anon_sym_short] = ACTIONS(996), - [sym_primitive_type] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_case] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_sizeof] = ACTIONS(996), - [sym_number_literal] = ACTIONS(998), - [anon_sym_L_SQUOTE] = ACTIONS(998), - [anon_sym_u_SQUOTE] = ACTIONS(998), - [anon_sym_U_SQUOTE] = ACTIONS(998), - [anon_sym_u8_SQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_L_DQUOTE] = ACTIONS(998), - [anon_sym_u_DQUOTE] = ACTIONS(998), - [anon_sym_U_DQUOTE] = ACTIONS(998), - [anon_sym_u8_DQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym_true] = ACTIONS(996), - [sym_false] = ACTIONS(996), - [sym_null] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [293] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(94), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_case_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), - [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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [294] = { - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(928), - [aux_sym_preproc_def_token1] = ACTIONS(928), - [aux_sym_preproc_if_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token1] = ACTIONS(928), - [aux_sym_preproc_ifdef_token2] = ACTIONS(928), - [sym_preproc_directive] = ACTIONS(928), - [anon_sym_LPAREN2] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym___attribute__] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(930), - [anon_sym___declspec] = ACTIONS(928), - [anon_sym___cdecl] = ACTIONS(928), - [anon_sym___clrcall] = ACTIONS(928), - [anon_sym___stdcall] = ACTIONS(928), - [anon_sym___fastcall] = ACTIONS(928), - [anon_sym___thiscall] = ACTIONS(928), - [anon_sym___vectorcall] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_static] = ACTIONS(928), - [anon_sym_auto] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_volatile] = ACTIONS(928), - [anon_sym_restrict] = ACTIONS(928), - [anon_sym__Atomic] = ACTIONS(928), - [anon_sym_signed] = ACTIONS(928), - [anon_sym_unsigned] = ACTIONS(928), - [anon_sym_long] = ACTIONS(928), - [anon_sym_short] = ACTIONS(928), - [sym_primitive_type] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_struct] = ACTIONS(928), - [anon_sym_union] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_goto] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_sizeof] = ACTIONS(928), - [sym_number_literal] = ACTIONS(930), - [anon_sym_L_SQUOTE] = ACTIONS(930), - [anon_sym_u_SQUOTE] = ACTIONS(930), - [anon_sym_U_SQUOTE] = ACTIONS(930), - [anon_sym_u8_SQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [anon_sym_L_DQUOTE] = ACTIONS(930), - [anon_sym_u_DQUOTE] = ACTIONS(930), - [anon_sym_U_DQUOTE] = ACTIONS(930), - [anon_sym_u8_DQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - }, - [295] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(227), - [sym_attributed_statement] = STATE(227), - [sym_labeled_statement] = STATE(227), - [sym_expression_statement] = STATE(227), - [sym_if_statement] = STATE(227), - [sym_switch_statement] = STATE(227), - [sym_case_statement] = STATE(227), - [sym_while_statement] = STATE(227), - [sym_do_statement] = STATE(227), - [sym_for_statement] = STATE(227), - [sym_return_statement] = STATE(227), - [sym_break_statement] = STATE(227), - [sym_continue_statement] = STATE(227), - [sym_goto_statement] = STATE(227), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), - [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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(217), - [sym_attributed_statement] = STATE(217), - [sym_labeled_statement] = STATE(217), - [sym_expression_statement] = STATE(217), - [sym_if_statement] = STATE(217), - [sym_switch_statement] = STATE(217), - [sym_case_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_do_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_return_statement] = STATE(217), - [sym_break_statement] = STATE(217), - [sym_continue_statement] = STATE(217), - [sym_goto_statement] = STATE(217), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), - [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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym___attribute__] = ACTIONS(924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(926), - [anon_sym___declspec] = ACTIONS(924), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_static] = ACTIONS(924), - [anon_sym_auto] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_volatile] = ACTIONS(924), - [anon_sym_restrict] = ACTIONS(924), - [anon_sym__Atomic] = ACTIONS(924), - [anon_sym_signed] = ACTIONS(924), - [anon_sym_unsigned] = ACTIONS(924), - [anon_sym_long] = ACTIONS(924), - [anon_sym_short] = ACTIONS(924), - [sym_primitive_type] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_goto] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(924), - [sym_number_literal] = ACTIONS(926), - [anon_sym_L_SQUOTE] = ACTIONS(926), - [anon_sym_u_SQUOTE] = ACTIONS(926), - [anon_sym_U_SQUOTE] = ACTIONS(926), - [anon_sym_u8_SQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(926), - [anon_sym_L_DQUOTE] = ACTIONS(926), - [anon_sym_u_DQUOTE] = ACTIONS(926), - [anon_sym_U_DQUOTE] = ACTIONS(926), - [anon_sym_u8_DQUOTE] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(918), - [sym_identifier] = ACTIONS(916), - [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), - [anon_sym_LPAREN2] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_typedef] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym___attribute__] = ACTIONS(916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(918), - [anon_sym___declspec] = ACTIONS(916), - [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(918), - [anon_sym_static] = ACTIONS(916), - [anon_sym_auto] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_inline] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [anon_sym_volatile] = ACTIONS(916), - [anon_sym_restrict] = ACTIONS(916), - [anon_sym__Atomic] = ACTIONS(916), - [anon_sym_signed] = ACTIONS(916), - [anon_sym_unsigned] = ACTIONS(916), - [anon_sym_long] = ACTIONS(916), - [anon_sym_short] = ACTIONS(916), - [sym_primitive_type] = ACTIONS(916), - [anon_sym_enum] = ACTIONS(916), - [anon_sym_struct] = ACTIONS(916), - [anon_sym_union] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(916), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_goto] = ACTIONS(916), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_sizeof] = ACTIONS(916), - [sym_number_literal] = ACTIONS(918), - [anon_sym_L_SQUOTE] = ACTIONS(918), - [anon_sym_u_SQUOTE] = ACTIONS(918), - [anon_sym_U_SQUOTE] = ACTIONS(918), - [anon_sym_u8_SQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(918), - [anon_sym_L_DQUOTE] = ACTIONS(918), - [anon_sym_u_DQUOTE] = ACTIONS(918), - [anon_sym_U_DQUOTE] = ACTIONS(918), - [anon_sym_u8_DQUOTE] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym_true] = ACTIONS(916), - [sym_false] = ACTIONS(916), - [sym_null] = ACTIONS(916), - [sym_comment] = ACTIONS(3), - }, - [299] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(233), - [sym_attributed_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), - [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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, [300] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(96), - [sym_attributed_statement] = STATE(96), - [sym_labeled_statement] = STATE(96), - [sym_expression_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_switch_statement] = STATE(96), - [sym_case_statement] = STATE(96), - [sym_while_statement] = STATE(96), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(96), - [sym_return_statement] = STATE(96), - [sym_break_statement] = STATE(96), - [sym_continue_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_attribute_declaration] = STATE(242), + [sym_compound_statement] = STATE(281), + [sym_attributed_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1337), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(1124), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33469,20 +33481,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(109), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_if] = ACTIONS(323), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_case] = ACTIONS(327), + [anon_sym_default] = ACTIONS(329), + [anon_sym_while] = ACTIONS(331), + [anon_sym_do] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_return] = ACTIONS(337), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(343), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33503,116 +33515,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [301] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(85), - [sym_attributed_statement] = STATE(85), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), - [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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, [302] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(103), - [sym_attributed_statement] = STATE(103), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(103), - [sym_if_statement] = STATE(103), - [sym_switch_statement] = STATE(103), - [sym_case_statement] = STATE(103), - [sym_while_statement] = STATE(103), - [sym_do_statement] = STATE(103), - [sym_for_statement] = STATE(103), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(103), - [sym_continue_statement] = STATE(103), - [sym_goto_statement] = STATE(103), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_attribute_declaration] = STATE(153), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_labeled_statement] = STATE(290), + [sym_expression_statement] = STATE(290), + [sym_if_statement] = STATE(290), + [sym_switch_statement] = STATE(290), + [sym_case_statement] = STATE(290), + [sym_while_statement] = STATE(290), + [sym_do_statement] = STATE(290), + [sym_for_statement] = STATE(290), + [sym_return_statement] = STATE(290), + [sym_break_statement] = STATE(290), + [sym_continue_statement] = STATE(290), + [sym_goto_statement] = STATE(290), + [sym__expression] = STATE(748), + [sym_comma_expression] = STATE(1321), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [aux_sym_attributed_declarator_repeat1] = STATE(153), [sym_identifier] = ACTIONS(1207), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -33621,20 +33633,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(109), + [anon_sym_SEMI] = ACTIONS(505), [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -33655,538 +33667,688 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [sym_identifier] = ACTIONS(902), + [aux_sym_preproc_include_token1] = ACTIONS(902), + [aux_sym_preproc_def_token1] = ACTIONS(902), + [aux_sym_preproc_if_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(902), + [sym_preproc_directive] = ACTIONS(902), + [anon_sym_LPAREN2] = ACTIONS(904), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_typedef] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym___attribute__] = ACTIONS(902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(904), + [anon_sym___declspec] = ACTIONS(902), + [anon_sym___cdecl] = ACTIONS(902), + [anon_sym___clrcall] = ACTIONS(902), + [anon_sym___stdcall] = ACTIONS(902), + [anon_sym___fastcall] = ACTIONS(902), + [anon_sym___thiscall] = ACTIONS(902), + [anon_sym___vectorcall] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_static] = ACTIONS(902), + [anon_sym_auto] = ACTIONS(902), + [anon_sym_register] = ACTIONS(902), + [anon_sym_inline] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_restrict] = ACTIONS(902), + [anon_sym__Atomic] = ACTIONS(902), + [anon_sym_signed] = ACTIONS(902), + [anon_sym_unsigned] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [sym_primitive_type] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_goto] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_sizeof] = ACTIONS(902), + [sym_number_literal] = ACTIONS(904), + [anon_sym_L_SQUOTE] = ACTIONS(904), + [anon_sym_u_SQUOTE] = ACTIONS(904), + [anon_sym_U_SQUOTE] = ACTIONS(904), + [anon_sym_u8_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_L_DQUOTE] = ACTIONS(904), + [anon_sym_u_DQUOTE] = ACTIONS(904), + [anon_sym_U_DQUOTE] = ACTIONS(904), + [anon_sym_u8_DQUOTE] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(904), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), [sym_comment] = ACTIONS(3), }, [304] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(102), - [sym_attributed_statement] = STATE(102), - [sym_labeled_statement] = STATE(102), - [sym_expression_statement] = STATE(102), - [sym_if_statement] = STATE(102), - [sym_switch_statement] = STATE(102), - [sym_case_statement] = STATE(102), - [sym_while_statement] = STATE(102), - [sym_do_statement] = STATE(102), - [sym_for_statement] = STATE(102), - [sym_return_statement] = STATE(102), - [sym_break_statement] = STATE(102), - [sym_continue_statement] = STATE(102), - [sym_goto_statement] = STATE(102), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), - [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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, [305] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(101), - [sym_attributed_statement] = STATE(101), - [sym_labeled_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_if_statement] = STATE(101), - [sym_switch_statement] = STATE(101), - [sym_case_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_break_statement] = STATE(101), - [sym_continue_statement] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), - [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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), + [sym_comment] = ACTIONS(3), + }, + [306] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + }, + [307] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(914), - [sym_identifier] = ACTIONS(912), - [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), - [anon_sym_LPAREN2] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_typedef] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym___attribute__] = ACTIONS(912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(914), - [anon_sym___declspec] = ACTIONS(912), - [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(914), - [anon_sym_static] = ACTIONS(912), - [anon_sym_auto] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_inline] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_volatile] = ACTIONS(912), - [anon_sym_restrict] = ACTIONS(912), - [anon_sym__Atomic] = ACTIONS(912), - [anon_sym_signed] = ACTIONS(912), - [anon_sym_unsigned] = ACTIONS(912), - [anon_sym_long] = ACTIONS(912), - [anon_sym_short] = ACTIONS(912), - [sym_primitive_type] = ACTIONS(912), - [anon_sym_enum] = ACTIONS(912), - [anon_sym_struct] = ACTIONS(912), - [anon_sym_union] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_goto] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_sizeof] = ACTIONS(912), - [sym_number_literal] = ACTIONS(914), - [anon_sym_L_SQUOTE] = ACTIONS(914), - [anon_sym_u_SQUOTE] = ACTIONS(914), - [anon_sym_U_SQUOTE] = ACTIONS(914), - [anon_sym_u8_SQUOTE] = ACTIONS(914), - [anon_sym_SQUOTE] = ACTIONS(914), - [anon_sym_L_DQUOTE] = ACTIONS(914), - [anon_sym_u_DQUOTE] = ACTIONS(914), - [anon_sym_U_DQUOTE] = ACTIONS(914), - [anon_sym_u8_DQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [sym_null] = ACTIONS(912), + [308] = { + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(98), - [sym_attributed_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_case_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), - [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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [309] = { + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(898), + [aux_sym_preproc_def_token1] = ACTIONS(898), + [aux_sym_preproc_if_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(898), + [sym_preproc_directive] = ACTIONS(898), + [anon_sym_LPAREN2] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(900), + [anon_sym___declspec] = ACTIONS(898), + [anon_sym___cdecl] = ACTIONS(898), + [anon_sym___clrcall] = ACTIONS(898), + [anon_sym___stdcall] = ACTIONS(898), + [anon_sym___fastcall] = ACTIONS(898), + [anon_sym___thiscall] = ACTIONS(898), + [anon_sym___vectorcall] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_static] = ACTIONS(898), + [anon_sym_auto] = ACTIONS(898), + [anon_sym_register] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(898), + [anon_sym__Atomic] = ACTIONS(898), + [anon_sym_signed] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_goto] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_sizeof] = ACTIONS(898), + [sym_number_literal] = ACTIONS(900), + [anon_sym_L_SQUOTE] = ACTIONS(900), + [anon_sym_u_SQUOTE] = ACTIONS(900), + [anon_sym_U_SQUOTE] = ACTIONS(900), + [anon_sym_u8_SQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_L_DQUOTE] = ACTIONS(900), + [anon_sym_u_DQUOTE] = ACTIONS(900), + [anon_sym_U_DQUOTE] = ACTIONS(900), + [anon_sym_u8_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(900), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(100), - [sym_attributed_statement] = STATE(100), - [sym_labeled_statement] = STATE(100), - [sym_expression_statement] = STATE(100), - [sym_if_statement] = STATE(100), - [sym_switch_statement] = STATE(100), - [sym_case_statement] = STATE(100), - [sym_while_statement] = STATE(100), - [sym_do_statement] = STATE(100), - [sym_for_statement] = STATE(100), - [sym_return_statement] = STATE(100), - [sym_break_statement] = STATE(100), - [sym_continue_statement] = STATE(100), - [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(691), - [sym_comma_expression] = STATE(1440), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1207), - [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(109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_case] = ACTIONS(121), - [anon_sym_default] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_return] = ACTIONS(131), - [anon_sym_break] = ACTIONS(133), - [anon_sym_continue] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [310] = { + [ts_builtin_sym_end] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_attribute_declaration] = STATE(263), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym__expression] = STATE(722), - [sym_comma_expression] = STATE(1426), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(609), - [sym_call_expression] = STATE(609), - [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [aux_sym_attributed_declarator_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1124), - [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(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), - [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_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [sym_number_literal] = ACTIONS(83), - [anon_sym_L_SQUOTE] = ACTIONS(85), - [anon_sym_u_SQUOTE] = ACTIONS(85), - [anon_sym_U_SQUOTE] = ACTIONS(85), - [anon_sym_u8_SQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(85), - [anon_sym_L_DQUOTE] = ACTIONS(87), - [anon_sym_u_DQUOTE] = ACTIONS(87), - [anon_sym_U_DQUOTE] = ACTIONS(87), - [anon_sym_u8_DQUOTE] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [311] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [310] = { + [312] = { [sym_identifier] = ACTIONS(1068), [aux_sym_preproc_include_token1] = ACTIONS(1068), [aux_sym_preproc_def_token1] = ACTIONS(1068), @@ -34261,82 +34423,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token2] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), + [313] = { + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), [sym_comment] = ACTIONS(3), }, - [312] = { + [314] = { + [ts_builtin_sym_end] = ACTIONS(1086), [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), @@ -34364,7 +34527,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1084), [anon_sym___vectorcall] = ACTIONS(1084), [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_RBRACE] = ACTIONS(1086), [anon_sym_static] = ACTIONS(1084), [anon_sym_auto] = ACTIONS(1084), [anon_sym_register] = ACTIONS(1084), @@ -34411,158 +34573,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [313] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [315] = { + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [316] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1118), + [317] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [318] = { [sym_identifier] = ACTIONS(1116), [aux_sym_preproc_include_token1] = ACTIONS(1116), [aux_sym_preproc_def_token1] = ACTIONS(1116), @@ -34590,6 +34826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1116), [anon_sym___vectorcall] = ACTIONS(1116), [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), [anon_sym_static] = ACTIONS(1116), [anon_sym_auto] = ACTIONS(1116), [anon_sym_register] = ACTIONS(1116), @@ -34636,12 +34873,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [316] = { - [ts_builtin_sym_end] = ACTIONS(1074), + [319] = { + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token2] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + }, + [320] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + }, + [321] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [322] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token2] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, + [323] = { [sym_identifier] = ACTIONS(1072), [aux_sym_preproc_include_token1] = ACTIONS(1072), [aux_sym_preproc_def_token1] = ACTIONS(1072), [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token2] = ACTIONS(1072), [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), [sym_preproc_directive] = ACTIONS(1072), @@ -34711,462 +35248,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), - [sym_comment] = ACTIONS(3), - }, - [318] = { - [sym_identifier] = ACTIONS(1120), - [aux_sym_preproc_include_token1] = ACTIONS(1120), - [aux_sym_preproc_def_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), - [sym_preproc_directive] = ACTIONS(1120), - [anon_sym_LPAREN2] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym___attribute__] = ACTIONS(1120), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), - [anon_sym___declspec] = ACTIONS(1120), - [anon_sym___cdecl] = ACTIONS(1120), - [anon_sym___clrcall] = ACTIONS(1120), - [anon_sym___stdcall] = ACTIONS(1120), - [anon_sym___fastcall] = ACTIONS(1120), - [anon_sym___thiscall] = ACTIONS(1120), - [anon_sym___vectorcall] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_volatile] = ACTIONS(1120), - [anon_sym_restrict] = ACTIONS(1120), - [anon_sym__Atomic] = ACTIONS(1120), - [anon_sym_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [sym_primitive_type] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_goto] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_L_SQUOTE] = ACTIONS(1122), - [anon_sym_u_SQUOTE] = ACTIONS(1122), - [anon_sym_U_SQUOTE] = ACTIONS(1122), - [anon_sym_u8_SQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_L_DQUOTE] = ACTIONS(1122), - [anon_sym_u_DQUOTE] = ACTIONS(1122), - [anon_sym_U_DQUOTE] = ACTIONS(1122), - [anon_sym_u8_DQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), - [sym_comment] = ACTIONS(3), - }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1070), - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_comment] = ACTIONS(3), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), - [sym_comment] = ACTIONS(3), - }, - [321] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [324] = { + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token2] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [325] = { + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [323] = { + [326] = { [sym_identifier] = ACTIONS(1080), [aux_sym_preproc_include_token1] = ACTIONS(1080), [aux_sym_preproc_def_token1] = ACTIONS(1080), [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token2] = ACTIONS(1080), [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), [sym_preproc_directive] = ACTIONS(1080), @@ -35190,6 +35426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1080), [anon_sym___vectorcall] = ACTIONS(1080), [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), [anon_sym_static] = ACTIONS(1080), [anon_sym_auto] = ACTIONS(1080), [anon_sym_register] = ACTIONS(1080), @@ -35236,457 +35473,608 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [327] = { + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1096), + [aux_sym_preproc_include_token1] = ACTIONS(1096), + [aux_sym_preproc_def_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), + [sym_preproc_directive] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym___attribute__] = ACTIONS(1096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), + [anon_sym___declspec] = ACTIONS(1096), + [anon_sym___cdecl] = ACTIONS(1096), + [anon_sym___clrcall] = ACTIONS(1096), + [anon_sym___stdcall] = ACTIONS(1096), + [anon_sym___fastcall] = ACTIONS(1096), + [anon_sym___thiscall] = ACTIONS(1096), + [anon_sym___vectorcall] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_auto] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(1096), + [anon_sym__Atomic] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [sym_primitive_type] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_goto] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_sizeof] = ACTIONS(1096), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_L_SQUOTE] = ACTIONS(1098), + [anon_sym_u_SQUOTE] = ACTIONS(1098), + [anon_sym_U_SQUOTE] = ACTIONS(1098), + [anon_sym_u8_SQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_L_DQUOTE] = ACTIONS(1098), + [anon_sym_u_DQUOTE] = ACTIONS(1098), + [anon_sym_U_DQUOTE] = ACTIONS(1098), + [anon_sym_u8_DQUOTE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, - [325] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [328] = { + [sym_identifier] = ACTIONS(1088), + [aux_sym_preproc_include_token1] = ACTIONS(1088), + [aux_sym_preproc_def_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), + [sym_preproc_directive] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym___attribute__] = ACTIONS(1088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), + [anon_sym___declspec] = ACTIONS(1088), + [anon_sym___cdecl] = ACTIONS(1088), + [anon_sym___clrcall] = ACTIONS(1088), + [anon_sym___stdcall] = ACTIONS(1088), + [anon_sym___fastcall] = ACTIONS(1088), + [anon_sym___thiscall] = ACTIONS(1088), + [anon_sym___vectorcall] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_auto] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_restrict] = ACTIONS(1088), + [anon_sym__Atomic] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(1088), + [anon_sym_unsigned] = ACTIONS(1088), + [anon_sym_long] = ACTIONS(1088), + [anon_sym_short] = ACTIONS(1088), + [sym_primitive_type] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_goto] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_sizeof] = ACTIONS(1088), + [sym_number_literal] = ACTIONS(1090), + [anon_sym_L_SQUOTE] = ACTIONS(1090), + [anon_sym_u_SQUOTE] = ACTIONS(1090), + [anon_sym_U_SQUOTE] = ACTIONS(1090), + [anon_sym_u8_SQUOTE] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_L_DQUOTE] = ACTIONS(1090), + [anon_sym_u_DQUOTE] = ACTIONS(1090), + [anon_sym_U_DQUOTE] = ACTIONS(1090), + [anon_sym_u8_DQUOTE] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym_true] = ACTIONS(1088), + [sym_false] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), + [329] = { + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), [sym_comment] = ACTIONS(3), }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [330] = { + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [331] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, + [332] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token2] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [333] = { + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [330] = { + [334] = { + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token2] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + }, + [335] = { + [ts_builtin_sym_end] = ACTIONS(1110), [sym_identifier] = ACTIONS(1108), [aux_sym_preproc_include_token1] = ACTIONS(1108), [aux_sym_preproc_def_token1] = ACTIONS(1108), @@ -35714,7 +36102,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1108), [anon_sym___vectorcall] = ACTIONS(1108), [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), [anon_sym_static] = ACTIONS(1108), [anon_sym_auto] = ACTIONS(1108), [anon_sym_register] = ACTIONS(1108), @@ -35761,82 +36148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), - [sym_comment] = ACTIONS(3), - }, - [332] = { + [336] = { [sym_identifier] = ACTIONS(1072), [aux_sym_preproc_include_token1] = ACTIONS(1072), [aux_sym_preproc_def_token1] = ACTIONS(1072), @@ -35911,757 +36223,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), - [sym_comment] = ACTIONS(3), - }, - [334] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token2] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - }, - [335] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token2] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_comment] = ACTIONS(3), - }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, [337] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, [338] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1078), - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_comment] = ACTIONS(3), - }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - }, - [342] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - }, - [343] = { [ts_builtin_sym_end] = ACTIONS(1054), [sym_identifier] = ACTIONS(1052), [aux_sym_preproc_include_token1] = ACTIONS(1052), @@ -36736,6 +36523,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, + [341] = { + [sym_identifier] = ACTIONS(1096), + [aux_sym_preproc_include_token1] = ACTIONS(1096), + [aux_sym_preproc_def_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), + [sym_preproc_directive] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym___attribute__] = ACTIONS(1096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), + [anon_sym___declspec] = ACTIONS(1096), + [anon_sym___cdecl] = ACTIONS(1096), + [anon_sym___clrcall] = ACTIONS(1096), + [anon_sym___stdcall] = ACTIONS(1096), + [anon_sym___fastcall] = ACTIONS(1096), + [anon_sym___thiscall] = ACTIONS(1096), + [anon_sym___vectorcall] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_auto] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(1096), + [anon_sym__Atomic] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [sym_primitive_type] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_goto] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_sizeof] = ACTIONS(1096), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_L_SQUOTE] = ACTIONS(1098), + [anon_sym_u_SQUOTE] = ACTIONS(1098), + [anon_sym_U_SQUOTE] = ACTIONS(1098), + [anon_sym_u8_SQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_L_DQUOTE] = ACTIONS(1098), + [anon_sym_u_DQUOTE] = ACTIONS(1098), + [anon_sym_U_DQUOTE] = ACTIONS(1098), + [anon_sym_u8_DQUOTE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + }, + [342] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, [344] = { [ts_builtin_sym_end] = ACTIONS(1102), [sym_identifier] = ACTIONS(1100), @@ -36812,231 +36824,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token2] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), [sym_comment] = ACTIONS(3), }, [346] = { - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token2] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), [sym_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token2] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + }, + [348] = { + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token2] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [348] = { + [349] = { + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [350] = { [ts_builtin_sym_end] = ACTIONS(1062), [sym_identifier] = ACTIONS(1060), [aux_sym_preproc_include_token1] = ACTIONS(1060), @@ -37111,12 +37273,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [349] = { + [351] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token2] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [353] = { + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token2] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, + [354] = { + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token2] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + }, + [355] = { + [ts_builtin_sym_end] = ACTIONS(1106), [sym_identifier] = ACTIONS(1104), [aux_sym_preproc_include_token1] = ACTIONS(1104), [aux_sym_preproc_def_token1] = ACTIONS(1104), [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token2] = ACTIONS(1104), [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), [sym_preproc_directive] = ACTIONS(1104), @@ -37186,82 +37648,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [356] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token2] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + }, + [357] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + }, + [358] = { + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token2] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [351] = { + [359] = { [sym_identifier] = ACTIONS(1108), [aux_sym_preproc_include_token1] = ACTIONS(1108), [aux_sym_preproc_def_token1] = ACTIONS(1108), @@ -37336,387 +37948,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - }, - [353] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_comment] = ACTIONS(3), - }, - [354] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - }, - [355] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_identifier] = ACTIONS(1120), - [aux_sym_preproc_include_token1] = ACTIONS(1120), - [aux_sym_preproc_def_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), - [sym_preproc_directive] = ACTIONS(1120), - [anon_sym_LPAREN2] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym___attribute__] = ACTIONS(1120), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), - [anon_sym___declspec] = ACTIONS(1120), - [anon_sym___cdecl] = ACTIONS(1120), - [anon_sym___clrcall] = ACTIONS(1120), - [anon_sym___stdcall] = ACTIONS(1120), - [anon_sym___fastcall] = ACTIONS(1120), - [anon_sym___thiscall] = ACTIONS(1120), - [anon_sym___vectorcall] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_volatile] = ACTIONS(1120), - [anon_sym_restrict] = ACTIONS(1120), - [anon_sym__Atomic] = ACTIONS(1120), - [anon_sym_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [sym_primitive_type] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_goto] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_L_SQUOTE] = ACTIONS(1122), - [anon_sym_u_SQUOTE] = ACTIONS(1122), - [anon_sym_U_SQUOTE] = ACTIONS(1122), - [anon_sym_u8_SQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_L_DQUOTE] = ACTIONS(1122), - [anon_sym_u_DQUOTE] = ACTIONS(1122), - [anon_sym_U_DQUOTE] = ACTIONS(1122), - [anon_sym_u8_DQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), + [360] = { + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token2] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, - [357] = { + [361] = { + [ts_builtin_sym_end] = ACTIONS(1050), [sym_identifier] = ACTIONS(1048), [aux_sym_preproc_include_token1] = ACTIONS(1048), [aux_sym_preproc_def_token1] = ACTIONS(1048), [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), [sym_preproc_directive] = ACTIONS(1048), @@ -37786,682 +38098,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1048), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [359] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - }, - [360] = { - [sym_identifier] = ACTIONS(1120), - [aux_sym_preproc_include_token1] = ACTIONS(1120), - [aux_sym_preproc_def_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token1] = ACTIONS(1120), - [aux_sym_preproc_if_token2] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), - [sym_preproc_directive] = ACTIONS(1120), - [anon_sym_LPAREN2] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym___attribute__] = ACTIONS(1120), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), - [anon_sym___declspec] = ACTIONS(1120), - [anon_sym___cdecl] = ACTIONS(1120), - [anon_sym___clrcall] = ACTIONS(1120), - [anon_sym___stdcall] = ACTIONS(1120), - [anon_sym___fastcall] = ACTIONS(1120), - [anon_sym___thiscall] = ACTIONS(1120), - [anon_sym___vectorcall] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_volatile] = ACTIONS(1120), - [anon_sym_restrict] = ACTIONS(1120), - [anon_sym__Atomic] = ACTIONS(1120), - [anon_sym_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [sym_primitive_type] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_goto] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [sym_number_literal] = ACTIONS(1122), - [anon_sym_L_SQUOTE] = ACTIONS(1122), - [anon_sym_u_SQUOTE] = ACTIONS(1122), - [anon_sym_U_SQUOTE] = ACTIONS(1122), - [anon_sym_u8_SQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_L_DQUOTE] = ACTIONS(1122), - [anon_sym_u_DQUOTE] = ACTIONS(1122), - [anon_sym_U_DQUOTE] = ACTIONS(1122), - [anon_sym_u8_DQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), - [sym_comment] = ACTIONS(3), - }, - [361] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, [362] = { - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token2] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1096), + [aux_sym_preproc_include_token1] = ACTIONS(1096), + [aux_sym_preproc_def_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token2] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), + [sym_preproc_directive] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym___attribute__] = ACTIONS(1096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), + [anon_sym___declspec] = ACTIONS(1096), + [anon_sym___cdecl] = ACTIONS(1096), + [anon_sym___clrcall] = ACTIONS(1096), + [anon_sym___stdcall] = ACTIONS(1096), + [anon_sym___fastcall] = ACTIONS(1096), + [anon_sym___thiscall] = ACTIONS(1096), + [anon_sym___vectorcall] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_auto] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(1096), + [anon_sym__Atomic] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [sym_primitive_type] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_goto] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_sizeof] = ACTIONS(1096), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_L_SQUOTE] = ACTIONS(1098), + [anon_sym_u_SQUOTE] = ACTIONS(1098), + [anon_sym_U_SQUOTE] = ACTIONS(1098), + [anon_sym_u8_SQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_L_DQUOTE] = ACTIONS(1098), + [anon_sym_u_DQUOTE] = ACTIONS(1098), + [anon_sym_U_DQUOTE] = ACTIONS(1098), + [anon_sym_u8_DQUOTE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, [363] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [sym_identifier] = ACTIONS(1088), + [aux_sym_preproc_include_token1] = ACTIONS(1088), + [aux_sym_preproc_def_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token2] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), + [sym_preproc_directive] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym___attribute__] = ACTIONS(1088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), + [anon_sym___declspec] = ACTIONS(1088), + [anon_sym___cdecl] = ACTIONS(1088), + [anon_sym___clrcall] = ACTIONS(1088), + [anon_sym___stdcall] = ACTIONS(1088), + [anon_sym___fastcall] = ACTIONS(1088), + [anon_sym___thiscall] = ACTIONS(1088), + [anon_sym___vectorcall] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_auto] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_restrict] = ACTIONS(1088), + [anon_sym__Atomic] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(1088), + [anon_sym_unsigned] = ACTIONS(1088), + [anon_sym_long] = ACTIONS(1088), + [anon_sym_short] = ACTIONS(1088), + [sym_primitive_type] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_goto] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_sizeof] = ACTIONS(1088), + [sym_number_literal] = ACTIONS(1090), + [anon_sym_L_SQUOTE] = ACTIONS(1090), + [anon_sym_u_SQUOTE] = ACTIONS(1090), + [anon_sym_U_SQUOTE] = ACTIONS(1090), + [anon_sym_u8_SQUOTE] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_L_DQUOTE] = ACTIONS(1090), + [anon_sym_u_DQUOTE] = ACTIONS(1090), + [anon_sym_U_DQUOTE] = ACTIONS(1090), + [anon_sym_u8_DQUOTE] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym_true] = ACTIONS(1088), + [sym_false] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, [365] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token2] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token2] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), + [ts_builtin_sym_end] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1088), + [aux_sym_preproc_include_token1] = ACTIONS(1088), + [aux_sym_preproc_def_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), + [sym_preproc_directive] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym___attribute__] = ACTIONS(1088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), + [anon_sym___declspec] = ACTIONS(1088), + [anon_sym___cdecl] = ACTIONS(1088), + [anon_sym___clrcall] = ACTIONS(1088), + [anon_sym___stdcall] = ACTIONS(1088), + [anon_sym___fastcall] = ACTIONS(1088), + [anon_sym___thiscall] = ACTIONS(1088), + [anon_sym___vectorcall] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_auto] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_restrict] = ACTIONS(1088), + [anon_sym__Atomic] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(1088), + [anon_sym_unsigned] = ACTIONS(1088), + [anon_sym_long] = ACTIONS(1088), + [anon_sym_short] = ACTIONS(1088), + [sym_primitive_type] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_goto] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_sizeof] = ACTIONS(1088), + [sym_number_literal] = ACTIONS(1090), + [anon_sym_L_SQUOTE] = ACTIONS(1090), + [anon_sym_u_SQUOTE] = ACTIONS(1090), + [anon_sym_U_SQUOTE] = ACTIONS(1090), + [anon_sym_u8_SQUOTE] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_L_DQUOTE] = ACTIONS(1090), + [anon_sym_u_DQUOTE] = ACTIONS(1090), + [anon_sym_U_DQUOTE] = ACTIONS(1090), + [anon_sym_u8_DQUOTE] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym_true] = ACTIONS(1088), + [sym_false] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, [367] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, + [368] = { [sym_identifier] = ACTIONS(1052), [aux_sym_preproc_include_token1] = ACTIONS(1052), [aux_sym_preproc_def_token1] = ACTIONS(1052), @@ -38525,173 +38612,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u_SQUOTE] = ACTIONS(1054), [anon_sym_U_SQUOTE] = ACTIONS(1054), [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - }, - [368] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token2] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, - [370] = { + [369] = { + [ts_builtin_sym_end] = ACTIONS(1070), [sym_identifier] = ACTIONS(1068), [aux_sym_preproc_include_token1] = ACTIONS(1068), [aux_sym_preproc_def_token1] = ACTIONS(1068), [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token2] = ACTIONS(1068), [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), [sym_preproc_directive] = ACTIONS(1068), @@ -38761,175 +38698,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, + [370] = { + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), + [sym_comment] = ACTIONS(3), + }, [371] = { - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token2] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token2] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, [372] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token2] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, [373] = { - [sym__expression] = STATE(533), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym__expression] = STATE(506), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_initializer_list] = STATE(532), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), + [sym_initializer_list] = STATE(516), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), [sym_identifier] = ACTIONS(1341), [anon_sym_COMMA] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(872), @@ -38982,33 +38994,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [374] = { - [sym_type_qualifier] = STATE(855), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(720), - [sym_comma_expression] = STATE(1418), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_type_qualifier] = STATE(857), + [sym__type_specifier] = STATE(988), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(744), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_type_descriptor] = STATE(1393), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_type_descriptor] = STATE(1429), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_type_definition_repeat1] = STATE(855), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_type_definition_repeat1] = STATE(857), [aux_sym_sized_type_specifier_repeat1] = STATE(994), [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39050,33 +39062,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [375] = { - [sym_type_qualifier] = STATE(855), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(720), - [sym_comma_expression] = STATE(1418), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_type_qualifier] = STATE(857), + [sym__type_specifier] = STATE(988), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(744), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_type_descriptor] = STATE(1360), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_type_descriptor] = STATE(1366), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_type_definition_repeat1] = STATE(855), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_type_definition_repeat1] = STATE(857), [aux_sym_sized_type_specifier_repeat1] = STATE(994), [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39118,33 +39130,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [376] = { - [sym_type_qualifier] = STATE(855), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(720), - [sym_comma_expression] = STATE(1418), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_type_qualifier] = STATE(857), + [sym__type_specifier] = STATE(988), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(744), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_type_descriptor] = STATE(1275), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_type_descriptor] = STATE(1432), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_type_definition_repeat1] = STATE(855), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_type_definition_repeat1] = STATE(857), [aux_sym_sized_type_specifier_repeat1] = STATE(994), [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39186,33 +39198,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [377] = { - [sym_type_qualifier] = STATE(855), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(720), - [sym_comma_expression] = STATE(1418), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_type_qualifier] = STATE(857), + [sym__type_specifier] = STATE(988), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(744), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_type_descriptor] = STATE(1420), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_type_descriptor] = STATE(1408), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_type_definition_repeat1] = STATE(855), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_type_definition_repeat1] = STATE(857), [aux_sym_sized_type_specifier_repeat1] = STATE(994), [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39254,33 +39266,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [378] = { - [sym_type_qualifier] = STATE(855), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(720), - [sym_comma_expression] = STATE(1418), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_type_qualifier] = STATE(857), + [sym__type_specifier] = STATE(988), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(744), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_type_descriptor] = STATE(1417), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_type_descriptor] = STATE(1344), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_type_definition_repeat1] = STATE(855), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_type_definition_repeat1] = STATE(857), [aux_sym_sized_type_specifier_repeat1] = STATE(994), [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39322,33 +39334,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [379] = { - [sym_type_qualifier] = STATE(855), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(720), - [sym_comma_expression] = STATE(1418), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_type_qualifier] = STATE(857), + [sym__type_specifier] = STATE(988), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(744), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_type_descriptor] = STATE(1335), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_type_descriptor] = STATE(1455), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_type_definition_repeat1] = STATE(855), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_type_definition_repeat1] = STATE(857), [aux_sym_sized_type_specifier_repeat1] = STATE(994), [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39390,33 +39402,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [380] = { - [sym_type_qualifier] = STATE(855), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(720), - [sym_comma_expression] = STATE(1418), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_type_qualifier] = STATE(857), + [sym__type_specifier] = STATE(988), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(744), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_type_descriptor] = STATE(1343), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_type_descriptor] = STATE(1436), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_type_definition_repeat1] = STATE(855), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_type_definition_repeat1] = STATE(857), [aux_sym_sized_type_specifier_repeat1] = STATE(994), [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39458,33 +39470,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [381] = { - [sym_type_qualifier] = STATE(855), - [sym__type_specifier] = STATE(987), - [sym_sized_type_specifier] = STATE(882), - [sym_enum_specifier] = STATE(882), - [sym_struct_specifier] = STATE(882), - [sym_union_specifier] = STATE(882), - [sym__expression] = STATE(720), - [sym_comma_expression] = STATE(1418), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), + [sym_type_qualifier] = STATE(857), + [sym__type_specifier] = STATE(988), + [sym_sized_type_specifier] = STATE(884), + [sym_enum_specifier] = STATE(884), + [sym_struct_specifier] = STATE(884), + [sym_union_specifier] = STATE(884), + [sym__expression] = STATE(744), + [sym_comma_expression] = STATE(1430), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), [sym_pointer_expression] = STATE(609), - [sym_unary_expression] = STATE(589), - [sym_binary_expression] = STATE(589), - [sym_update_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_type_descriptor] = STATE(1429), - [sym_sizeof_expression] = STATE(589), + [sym_unary_expression] = STATE(513), + [sym_binary_expression] = STATE(513), + [sym_update_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_type_descriptor] = STATE(1346), + [sym_sizeof_expression] = STATE(513), [sym_subscript_expression] = STATE(609), [sym_call_expression] = STATE(609), [sym_field_expression] = STATE(609), - [sym_compound_literal_expression] = STATE(589), + [sym_compound_literal_expression] = STATE(513), [sym_parenthesized_expression] = STATE(609), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(430), - [sym_macro_type_specifier] = STATE(882), - [aux_sym_type_definition_repeat1] = STATE(855), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(427), + [sym_macro_type_specifier] = STATE(884), + [aux_sym_type_definition_repeat1] = STATE(857), [aux_sym_sized_type_specifier_repeat1] = STATE(994), [sym_identifier] = ACTIONS(1343), [anon_sym_LPAREN2] = ACTIONS(19), @@ -39528,39 +39540,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 21, + [0] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1349), 25, + 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_EQ, + anon_sym_COLON, + 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(1347), 38, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + 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_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + [71] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1353), 25, + 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_EQ, + anon_sym_COLON, + 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(1351), 38, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + 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_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + [142] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(884), 1, anon_sym_LBRACE, - ACTIONS(1094), 1, + ACTIONS(1042), 1, anon_sym_AMP, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1353), 1, + ACTIONS(1361), 1, anon_sym_TILDE, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_STAR, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(532), 1, + STATE(516), 1, sym_initializer_list, - STATE(620), 1, + STATE(630), 1, sym__expression, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, sym_null, - ACTIONS(1351), 3, + ACTIONS(1359), 3, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, @@ -39582,13 +39730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -39614,142 +39762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, - [107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1363), 25, - 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_EQ, - anon_sym_COLON, - 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(1361), 38, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - 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_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - [178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1367), 25, - 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_EQ, - anon_sym_COLON, - 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(1365), 38, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - 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_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, [249] = 6, ACTIONS(3), 1, sym_comment, @@ -39847,21 +39859,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___based, ACTIONS(1393), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(927), 1, + STATE(946), 1, sym__declaration_specifiers, - STATE(1092), 1, + STATE(1095), 1, sym__declarator, - STATE(1138), 1, + STATE(1139), 1, sym__abstract_declarator, - STATE(1142), 1, + STATE(1141), 1, sym_parameter_list, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1208), 2, + STATE(1150), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(45), 4, @@ -39874,7 +39886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1143), 4, + STATE(1142), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -39885,13 +39897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -39936,16 +39948,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1409), 1, sym_preproc_directive, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1330), 2, + STATE(1363), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -39964,7 +39976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -39978,7 +39990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(409), 8, + STATE(396), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40018,16 +40030,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1411), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1394), 2, + STATE(1435), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40046,7 +40058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40060,7 +40072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(409), 8, + STATE(411), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40100,16 +40112,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1413), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1346), 2, + STATE(1392), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40128,7 +40140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40142,7 +40154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(388), 8, + STATE(400), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40182,16 +40194,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1415), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1304), 2, + STATE(1299), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40210,7 +40222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40224,7 +40236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(409), 8, + STATE(395), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40264,16 +40276,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1417), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1301), 2, + STATE(1357), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40292,7 +40304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40306,7 +40318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(399), 8, + STATE(411), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40346,16 +40358,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1419), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1344), 2, + STATE(1340), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40374,7 +40386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40388,7 +40400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(409), 8, + STATE(393), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40428,16 +40440,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1421), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1345), 2, + STATE(1290), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40456,7 +40468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40470,7 +40482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(387), 8, + STATE(411), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40510,16 +40522,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1423), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1364), 2, + STATE(1287), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40538,7 +40550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40552,7 +40564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(392), 8, + STATE(411), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40592,16 +40604,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1425), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1415), 2, + STATE(1370), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40620,7 +40632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40634,7 +40646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(397), 8, + STATE(411), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40674,16 +40686,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1427), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1406), 2, + STATE(1416), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40702,7 +40714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40716,7 +40728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(398), 8, + STATE(411), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40756,16 +40768,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1429), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1338), 2, + STATE(1433), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40784,7 +40796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40798,7 +40810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(409), 8, + STATE(388), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40838,16 +40850,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1431), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1416), 2, + STATE(1358), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40866,7 +40878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40880,7 +40892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(409), 8, + STATE(394), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -40920,16 +40932,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1433), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1352), 2, + STATE(1373), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -40948,7 +40960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -40962,7 +40974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(409), 8, + STATE(391), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41002,16 +41014,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1435), 1, aux_sym_preproc_if_token2, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(997), 1, sym__declaration_specifiers, ACTIONS(1403), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1342), 2, + STATE(1336), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -41030,7 +41042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -41044,7 +41056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(390), 8, + STATE(411), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -41053,7 +41065,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, - [1952] = 11, + [1952] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, @@ -41061,14 +41073,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1447), 1, anon_sym_STAR, ACTIONS(1450), 1, - anon_sym_SEMI, - ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1457), 1, + ACTIONS(1454), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41079,19 +41089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1439), 12, - anon_sym_COMMA, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, @@ -41119,20 +41116,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [2029] = 10, + ACTIONS(1439), 13, + anon_sym_COMMA, + 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_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [2027] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, anon_sym_LPAREN2, ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1453), 1, + ACTIONS(1450), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1461), 1, + ACTIONS(1458), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41184,7 +41195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2104] = 11, + [2102] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, @@ -41192,14 +41203,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1447), 1, anon_sym_STAR, ACTIONS(1450), 1, - anon_sym_SEMI, - ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1463), 1, + ACTIONS(1460), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41210,19 +41219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1439), 12, - anon_sym_COMMA, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, @@ -41250,20 +41246,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [2181] = 10, + ACTIONS(1439), 13, + anon_sym_COMMA, + 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_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [2177] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, anon_sym_LPAREN2, ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1453), 1, + ACTIONS(1450), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1463), 1, + ACTIONS(1462), 1, + anon_sym_SEMI, + ACTIONS(1465), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41274,6 +41286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1439), 12, + anon_sym_COMMA, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(1445), 12, anon_sym_DASH, anon_sym_PLUS, @@ -41301,21 +41326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - ACTIONS(1439), 13, - anon_sym_COMMA, - 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_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [2256] = 11, + [2254] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, @@ -41323,14 +41334,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1447), 1, anon_sym_STAR, ACTIONS(1450), 1, - anon_sym_SEMI, - ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1465), 1, + ACTIONS(1454), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1462), 1, + anon_sym_SEMI, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41381,20 +41392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [2333] = 10, + [2331] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, anon_sym_LPAREN2, ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1453), 1, + ACTIONS(1450), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1457), 1, + ACTIONS(1465), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41446,7 +41457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2408] = 11, + [2406] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, @@ -41454,14 +41465,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1447), 1, anon_sym_STAR, ACTIONS(1450), 1, - anon_sym_SEMI, - ACTIONS(1453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1461), 1, + ACTIONS(1460), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1462), 1, + anon_sym_SEMI, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41512,20 +41523,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [2485] = 10, + [2483] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, anon_sym_LPAREN2, ACTIONS(1447), 1, anon_sym_STAR, - ACTIONS(1453), 1, + ACTIONS(1450), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1465), 1, + ACTIONS(1458), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1462), 1, + anon_sym_SEMI, + ACTIONS(1456), 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(1439), 12, + anon_sym_COMMA, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1445), 12, + anon_sym_DASH, + anon_sym_PLUS, + 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_LBRACK, + ACTIONS(1437), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [2560] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1441), 1, + anon_sym_LPAREN2, + ACTIONS(1447), 1, + anon_sym_STAR, + ACTIONS(1450), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1452), 1, + anon_sym_EQ, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -41577,84 +41652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [2560] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 1, - sym_identifier, - ACTIONS(1470), 1, - aux_sym_preproc_def_token1, - ACTIONS(1473), 1, - aux_sym_preproc_if_token1, - ACTIONS(1481), 1, - sym_preproc_directive, - ACTIONS(1487), 1, - anon_sym___attribute__, - ACTIONS(1490), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1493), 1, - anon_sym___declspec, - ACTIONS(1502), 1, - sym_primitive_type, - ACTIONS(1505), 1, - anon_sym_enum, - ACTIONS(1508), 1, - anon_sym_struct, - ACTIONS(1511), 1, - anon_sym_union, - STATE(703), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(997), 1, - sym__declaration_specifiers, - ACTIONS(1478), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1476), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(1496), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1499), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1484), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(882), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(645), 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(409), 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, - [2660] = 23, + [2632] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -41667,17 +41665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1514), 1, + ACTIONS(1467), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1469), 1, anon_sym_RBRACE, - ACTIONS(1518), 1, + ACTIONS(1471), 1, anon_sym_LBRACK, - ACTIONS(1520), 1, + ACTIONS(1473), 1, anon_sym_DOT, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(669), 1, + STATE(690), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -41691,14 +41689,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1206), 2, + STATE(1149), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1099), 3, + STATE(1105), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -41720,7 +41718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -41731,69 +41729,83 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2760] = 9, + [2732] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN2, - ACTIONS(1447), 1, - anon_sym_STAR, - ACTIONS(1453), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1455), 1, - anon_sym_EQ, - ACTIONS(1459), 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(1445), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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_LBRACK, - ACTIONS(1437), 13, - anon_sym_extern, + ACTIONS(1475), 1, + sym_identifier, + ACTIONS(1478), 1, + aux_sym_preproc_def_token1, + ACTIONS(1481), 1, + aux_sym_preproc_if_token1, + ACTIONS(1489), 1, + sym_preproc_directive, + ACTIONS(1495), 1, anon_sym___attribute__, + ACTIONS(1498), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1501), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(1510), 1, + sym_primitive_type, + ACTIONS(1513), 1, + anon_sym_enum, + ACTIONS(1516), 1, + anon_sym_struct, + ACTIONS(1519), 1, + anon_sym_union, + STATE(707), 1, + sym__type_specifier, + STATE(758), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(997), 1, + sym__declaration_specifiers, + ACTIONS(1486), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1484), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(1504), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - sym_identifier, - ACTIONS(1439), 13, - anon_sym_COMMA, - 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_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + ACTIONS(1507), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1492), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(884), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(645), 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(411), 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, [2832] = 22, ACTIONS(3), 1, sym_comment, @@ -41807,15 +41819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1518), 1, + ACTIONS(1471), 1, anon_sym_LBRACK, - ACTIONS(1520), 1, + ACTIONS(1473), 1, anon_sym_DOT, ACTIONS(1522), 1, anon_sym_RBRACE, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(696), 1, + STATE(751), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -41829,14 +41841,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1227), 2, + STATE(1235), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1099), 3, + STATE(1105), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -41858,7 +41870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -41882,15 +41894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1518), 1, + ACTIONS(1471), 1, anon_sym_LBRACK, - ACTIONS(1520), 1, + ACTIONS(1473), 1, anon_sym_DOT, ACTIONS(1524), 1, anon_sym_RBRACE, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(696), 1, + STATE(751), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -41904,14 +41916,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1227), 2, + STATE(1235), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1099), 3, + STATE(1105), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -41933,7 +41945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -41947,56 +41959,56 @@ static const uint16_t ts_small_parse_table[] = { [3026] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1475), 1, + sym_identifier, + ACTIONS(1495), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1498), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1501), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1510), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1513), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1516), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1519), 1, anon_sym_union, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1395), 1, - sym_identifier, ACTIONS(1526), 1, aux_sym_preproc_def_token1, - ACTIONS(1528), 1, + ACTIONS(1529), 1, aux_sym_preproc_if_token1, - ACTIONS(1532), 1, + ACTIONS(1535), 1, sym_preproc_directive, - ACTIONS(1534), 1, + ACTIONS(1538), 1, anon_sym_RBRACE, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(996), 1, + STATE(995), 1, sym__declaration_specifiers, - ACTIONS(1530), 2, + ACTIONS(1532), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + ACTIONS(1504), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, + ACTIONS(1507), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + ACTIONS(1492), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42010,7 +42022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(419), 8, + STATE(414), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42032,13 +42044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1518), 1, + ACTIONS(1471), 1, anon_sym_LBRACK, - ACTIONS(1520), 1, + ACTIONS(1473), 1, anon_sym_DOT, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(696), 1, + STATE(751), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -42052,14 +42064,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1227), 2, + STATE(1235), 2, sym_initializer_list, sym_initializer_pair, ACTIONS(89), 3, sym_true, sym_false, sym_null, - STATE(1099), 3, + STATE(1105), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -42081,7 +42093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42095,56 +42107,56 @@ static const uint16_t ts_small_parse_table[] = { [3218] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, - sym_identifier, - ACTIONS(1487), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1490), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1493), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1502), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1505), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1508), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1511), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1536), 1, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1540), 1, aux_sym_preproc_def_token1, - ACTIONS(1539), 1, + ACTIONS(1542), 1, aux_sym_preproc_if_token1, - ACTIONS(1545), 1, + ACTIONS(1546), 1, sym_preproc_directive, ACTIONS(1548), 1, anon_sym_RBRACE, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(996), 1, + STATE(995), 1, sym__declaration_specifiers, - ACTIONS(1542), 2, + ACTIONS(1544), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1496), 4, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1499), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1484), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42158,7 +42170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(416), 8, + STATE(414), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42194,11 +42206,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, ACTIONS(1558), 1, sym_preproc_directive, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(995), 1, + STATE(996), 1, sym__declaration_specifiers, ACTIONS(1556), 2, aux_sym_preproc_ifdef_token1, @@ -42219,7 +42231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42233,7 +42245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(418), 8, + STATE(420), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42261,21 +42273,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1540), 1, aux_sym_preproc_def_token1, - ACTIONS(1552), 1, + ACTIONS(1542), 1, aux_sym_preproc_if_token1, - ACTIONS(1558), 1, + ACTIONS(1546), 1, sym_preproc_directive, ACTIONS(1560), 1, - aux_sym_preproc_if_token2, - STATE(703), 1, + anon_sym_RBRACE, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(995), 1, sym__declaration_specifiers, - ACTIONS(1556), 2, + ACTIONS(1544), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, @@ -42294,7 +42306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42308,7 +42320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(420), 8, + STATE(416), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42336,21 +42348,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1550), 1, aux_sym_preproc_def_token1, - ACTIONS(1528), 1, + ACTIONS(1552), 1, aux_sym_preproc_if_token1, - ACTIONS(1532), 1, + ACTIONS(1558), 1, sym_preproc_directive, ACTIONS(1562), 1, - anon_sym_RBRACE, - STATE(703), 1, + aux_sym_preproc_if_token2, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, STATE(996), 1, sym__declaration_specifiers, - ACTIONS(1530), 2, + ACTIONS(1556), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(45), 4, @@ -42369,7 +42381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42383,7 +42395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(416), 8, + STATE(417), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -42395,23 +42407,23 @@ static const uint16_t ts_small_parse_table[] = { [3610] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, + ACTIONS(1475), 1, sym_identifier, - ACTIONS(1476), 1, + ACTIONS(1484), 1, aux_sym_preproc_if_token2, - ACTIONS(1487), 1, + ACTIONS(1495), 1, anon_sym___attribute__, - ACTIONS(1490), 1, + ACTIONS(1498), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1501), 1, anon_sym___declspec, - ACTIONS(1502), 1, + ACTIONS(1510), 1, sym_primitive_type, - ACTIONS(1505), 1, + ACTIONS(1513), 1, anon_sym_enum, - ACTIONS(1508), 1, + ACTIONS(1516), 1, anon_sym_struct, - ACTIONS(1511), 1, + ACTIONS(1519), 1, anon_sym_union, ACTIONS(1564), 1, aux_sym_preproc_def_token1, @@ -42419,32 +42431,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(1573), 1, sym_preproc_directive, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(995), 1, + STATE(996), 1, sym__declaration_specifiers, ACTIONS(1570), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1496), 4, + ACTIONS(1504), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1499), 4, + ACTIONS(1507), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1484), 5, + ACTIONS(1492), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -42472,32 +42484,32 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_AMP, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, ACTIONS(1576), 1, anon_sym_STAR, ACTIONS(1578), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(814), 1, + STATE(753), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(431), 2, + STATE(647), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -42521,13 +42533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42538,19 +42550,90 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3799] = 5, + [3799] = 20, ACTIONS(3), 1, sym_comment, - STATE(434), 2, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1355), 1, + sym_identifier, + ACTIONS(1357), 1, + anon_sym_LPAREN2, + ACTIONS(1363), 1, + anon_sym_AMP, + ACTIONS(1367), 1, + anon_sym_sizeof, + ACTIONS(1582), 1, + anon_sym_STAR, + ACTIONS(1584), 1, + anon_sym_RBRACK, + STATE(427), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, + STATE(755), 1, + sym__expression, + ACTIONS(1359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1361), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1365), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(647), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(1580), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, ACTIONS(87), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1584), 13, + STATE(637), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [3890] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(423), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1590), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1588), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -42564,7 +42647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1582), 29, + ACTIONS(1586), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -42594,37 +42677,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [3860] = 20, + [3951] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_AMP, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - ACTIONS(1586), 1, + ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1588), 1, + ACTIONS(1595), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(784), 1, + STATE(796), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(433), 2, + STATE(432), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -42648,13 +42731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42665,114 +42748,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3951] = 26, - 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(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1383), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1385), 1, - anon_sym_RPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - sym_identifier, - ACTIONS(1590), 1, - anon_sym_LPAREN2, - ACTIONS(1592), 1, - anon_sym_STAR, - STATE(703), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(927), 1, - sym__declaration_specifiers, - STATE(1138), 1, - sym__abstract_declarator, - STATE(1142), 1, - sym_parameter_list, - STATE(1208), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1143), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(882), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(645), 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, - [4054] = 20, + [4042] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_AMP, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - ACTIONS(1594), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(1596), 1, + ACTIONS(1599), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(800), 1, + STATE(783), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(427), 2, + STATE(421), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -42796,13 +42802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42813,37 +42819,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4145] = 20, + [4133] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_AMP, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - ACTIONS(1598), 1, + ACTIONS(1601), 1, anon_sym_STAR, - ACTIONS(1600), 1, + ACTIONS(1603), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(794), 1, + STATE(780), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(432), 2, + STATE(422), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -42867,13 +42873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42884,37 +42890,93 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4236] = 20, + [4224] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(433), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1445), 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(1439), 29, + 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_DOT, + anon_sym_DASH_GT, + [4285] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_AMP, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - ACTIONS(1602), 1, + ACTIONS(1605), 1, anon_sym_STAR, - ACTIONS(1604), 1, + ACTIONS(1607), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(796), 1, + STATE(826), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(647), 2, + STATE(429), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -42938,13 +43000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -42955,37 +43017,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4327] = 20, + [4376] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_AMP, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - ACTIONS(1606), 1, + ACTIONS(1609), 1, anon_sym_STAR, - ACTIONS(1608), 1, + ACTIONS(1611), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(751), 1, + STATE(777), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(429), 2, + STATE(647), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -43009,13 +43071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43026,34 +43088,34 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4418] = 20, + [4467] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_AMP, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - ACTIONS(1610), 1, + ACTIONS(1613), 1, anon_sym_STAR, - ACTIONS(1612), 1, + ACTIONS(1615), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(770), 1, + STATE(812), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, STATE(647), 2, @@ -43080,13 +43142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43097,164 +43159,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4509] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(422), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1445), 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(1439), 29, - 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_DOT, - anon_sym_DASH_GT, - [4570] = 20, + [4558] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1349), 1, - anon_sym_LPAREN2, ACTIONS(1355), 1, - anon_sym_AMP, - ACTIONS(1359), 1, - anon_sym_sizeof, - ACTIONS(1614), 1, - anon_sym_STAR, - ACTIONS(1616), 1, - anon_sym_RBRACK, - STATE(430), 1, - sym_string_literal, - STATE(759), 1, - sym__expression, - ACTIONS(1351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1353), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1357), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(647), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(1580), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(638), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [4661] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1347), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_AMP, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - ACTIONS(1618), 1, + ACTIONS(1617), 1, anon_sym_STAR, - ACTIONS(1620), 1, + ACTIONS(1619), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(747), 1, + STATE(781), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(647), 2, + STATE(430), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 3, @@ -43278,13 +43213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43295,34 +43230,34 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4752] = 20, + [4649] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_AMP, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - ACTIONS(1622), 1, + ACTIONS(1621), 1, anon_sym_STAR, - ACTIONS(1624), 1, + ACTIONS(1623), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(813), 1, + STATE(803), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, STATE(647), 2, @@ -43349,13 +43284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43366,19 +43301,19 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [4843] = 5, + [4740] = 5, ACTIONS(3), 1, sym_comment, - STATE(434), 2, + STATE(423), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1630), 5, + ACTIONS(87), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1628), 13, + ACTIONS(1627), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -43392,7 +43327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1626), 29, + ACTIONS(1625), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -43422,6 +43357,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, + [4801] = 26, + 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(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1383), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1385), 1, + anon_sym_RPAREN, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1629), 1, + anon_sym_LPAREN2, + ACTIONS(1631), 1, + anon_sym_STAR, + STATE(707), 1, + sym__type_specifier, + STATE(758), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(946), 1, + sym__declaration_specifiers, + STATE(1139), 1, + sym__abstract_declarator, + STATE(1141), 1, + sym_parameter_list, + STATE(1150), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1142), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(884), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(645), 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, [4904] = 21, ACTIONS(3), 1, sym_comment, @@ -43443,15 +43455,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1633), 1, anon_sym_LBRACE, - STATE(644), 1, + STATE(642), 1, sym_ms_call_modifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1010), 1, + STATE(1004), 1, sym__declaration_specifiers, - STATE(112), 3, + STATE(326), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43471,7 +43483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43492,7 +43504,59 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4995] = 21, + [4995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1637), 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(1635), 34, + 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_DOT, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [5050] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43511,17 +43575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1639), 1, anon_sym_LBRACE, - STATE(642), 1, + STATE(643), 1, sym_ms_call_modifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1004), 1, + STATE(1008), 1, sym__declaration_specifiers, - STATE(365), 3, + STATE(115), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43541,7 +43605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43562,7 +43626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5086] = 21, + [5141] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43581,17 +43645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - ACTIONS(1637), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - STATE(641), 1, + STATE(644), 1, sym_ms_call_modifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1008), 1, + STATE(1012), 1, sym__declaration_specifiers, - STATE(348), 3, + STATE(319), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43611,7 +43675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43632,7 +43696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5177] = 21, + [5232] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -43651,17 +43715,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - ACTIONS(1639), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - STATE(640), 1, + STATE(641), 1, sym_ms_call_modifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1001), 1, + STATE(1003), 1, sym__declaration_specifiers, - STATE(358), 3, + STATE(370), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -43681,7 +43745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -43702,10 +43766,10 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5268] = 3, + [5323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 13, + ACTIONS(1647), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -43719,7 +43783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1641), 34, + ACTIONS(1645), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -43754,59 +43818,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [5323] = 3, + [5378] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 13, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1341), 1, + sym_identifier, + ACTIONS(1649), 1, + anon_sym_RPAREN, + STATE(427), 1, + sym_string_literal, + STATE(726), 1, + sym__expression, + STATE(1347), 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_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(1645), 34, - 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, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [5378] = 18, + STATE(609), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5460] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -43817,13 +43893,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1649), 1, + ACTIONS(1651), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(701), 1, + STATE(719), 1, sym__expression, - STATE(1353), 1, + STATE(1281), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -43859,7 +43935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43870,7 +43946,71 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5460] = 18, + [5542] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(427), 1, + sym_string_literal, + STATE(506), 1, + sym__expression, + STATE(516), 1, + sym_initializer_list, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(527), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5624] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -43881,13 +44021,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_SEMI, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(706), 1, + STATE(718), 1, sym__expression, - STATE(1404), 1, + STATE(1313), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -43923,7 +44063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43934,7 +44074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5542] = 18, + [5706] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -43943,16 +44083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + ACTIONS(1655), 1, + anon_sym_RPAREN, + STATE(427), 1, sym_string_literal, - STATE(532), 1, - sym_initializer_list, - STATE(533), 1, + STATE(716), 1, sym__expression, + STATE(1348), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -43987,7 +44127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -43998,7 +44138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5624] = 18, + [5788] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44007,16 +44147,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + ACTIONS(1657), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(698), 1, + STATE(713), 1, sym__expression, - STATE(1232), 1, - sym_initializer_list, + STATE(1351), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -44051,7 +44191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44062,7 +44202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5706] = 18, + [5870] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44073,13 +44213,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1653), 1, - anon_sym_RPAREN, - STATE(430), 1, + ACTIONS(1659), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(728), 1, + STATE(701), 1, sym__expression, - STATE(1328), 1, + STATE(1349), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44115,7 +44255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44126,7 +44266,71 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5788] = 18, + [5952] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1355), 1, + sym_identifier, + ACTIONS(1357), 1, + anon_sym_LPAREN2, + ACTIONS(1367), 1, + anon_sym_sizeof, + STATE(427), 1, + sym_string_literal, + STATE(516), 1, + sym_initializer_list, + STATE(630), 1, + sym__expression, + ACTIONS(1359), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1361), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1365), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(637), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [6034] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44137,13 +44341,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1661), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(710), 1, + STATE(733), 1, sym__expression, - STATE(1282), 1, + STATE(1314), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44179,7 +44383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44190,7 +44394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5870] = 18, + [6116] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44201,13 +44405,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1657), 1, + ACTIONS(1663), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(695), 1, + STATE(736), 1, sym__expression, - STATE(1375), 1, + STATE(1288), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44243,7 +44447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44254,7 +44458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5952] = 18, + [6198] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44265,13 +44469,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(711), 1, + STATE(735), 1, sym__expression, - STATE(1280), 1, + STATE(1316), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44307,7 +44511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44318,7 +44522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6034] = 18, + [6280] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44329,13 +44533,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1661), 1, + ACTIONS(1667), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(712), 1, + STATE(700), 1, sym__expression, - STATE(1278), 1, + STATE(1323), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44371,7 +44575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44382,7 +44586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6116] = 18, + [6362] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44393,13 +44597,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(716), 1, + STATE(694), 1, sym__expression, - STATE(1370), 1, + STATE(1388), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44435,7 +44639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44446,7 +44650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6198] = 18, + [6444] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44457,13 +44661,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(709), 1, + STATE(722), 1, sym__expression, - STATE(1285), 1, + STATE(1307), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44499,7 +44703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44510,7 +44714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6280] = 18, + [6526] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44521,13 +44725,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(723), 1, + STATE(749), 1, sym__expression, - STATE(1293), 1, + STATE(1296), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44563,7 +44767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44574,7 +44778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6362] = 18, + [6608] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44583,16 +44787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + ACTIONS(1675), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(707), 1, + STATE(731), 1, sym__expression, - STATE(1226), 1, - sym_initializer_list, + STATE(1417), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -44627,7 +44831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44638,7 +44842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6444] = 18, + [6690] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44649,13 +44853,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1669), 1, + ACTIONS(1677), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(694), 1, + STATE(734), 1, sym__expression, - STATE(1379), 1, + STATE(1285), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44691,7 +44895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44702,7 +44906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6526] = 18, + [6772] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44713,13 +44917,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1671), 1, + ACTIONS(1679), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(715), 1, + STATE(708), 1, sym__expression, - STATE(1276), 1, + STATE(1382), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44755,7 +44959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44766,35 +44970,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6608] = 18, + [6854] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(430), 1, + ACTIONS(1681), 1, + anon_sym_RPAREN, + STATE(427), 1, sym_string_literal, - STATE(532), 1, - sym_initializer_list, - STATE(533), 1, + STATE(725), 1, sym__expression, + STATE(1283), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -44813,13 +45017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44830,7 +45034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6690] = 18, + [6936] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44841,13 +45045,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1673), 1, - anon_sym_RPAREN, - STATE(430), 1, + ACTIONS(1683), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(729), 1, + STATE(738), 1, sym__expression, - STATE(1331), 1, + STATE(1317), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -44883,7 +45087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44894,7 +45098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6772] = 18, + [7018] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44903,16 +45107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, + ACTIONS(884), 1, + anon_sym_LBRACE, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1675), 1, - anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(692), 1, + STATE(728), 1, sym__expression, - STATE(1274), 1, - sym_comma_expression, + STATE(1229), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -44947,7 +45151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -44958,7 +45162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6854] = 18, + [7100] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -44969,13 +45173,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1685), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(732), 1, + STATE(695), 1, sym__expression, - STATE(1399), 1, + STATE(1284), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45011,7 +45215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45022,7 +45226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6936] = 18, + [7182] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45033,13 +45237,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1679), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(1687), 1, + anon_sym_RPAREN, + STATE(427), 1, sym_string_literal, - STATE(737), 1, + STATE(727), 1, sym__expression, - STATE(1315), 1, + STATE(1381), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45075,7 +45279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45086,7 +45290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7018] = 18, + [7264] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45097,13 +45301,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1681), 1, - anon_sym_RPAREN, - STATE(430), 1, + ACTIONS(1689), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(730), 1, + STATE(699), 1, sym__expression, - STATE(1334), 1, + STATE(1413), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45139,7 +45343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45150,7 +45354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7100] = 18, + [7346] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45161,13 +45365,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1683), 1, - anon_sym_RPAREN, - STATE(430), 1, + ACTIONS(1691), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(693), 1, + STATE(745), 1, sym__expression, - STATE(1369), 1, + STATE(1355), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45203,7 +45407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45214,35 +45418,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7182] = 18, + [7428] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1347), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1349), 1, - anon_sym_LPAREN2, - ACTIONS(1359), 1, - anon_sym_sizeof, - STATE(430), 1, + ACTIONS(1693), 1, + anon_sym_RPAREN, + STATE(427), 1, sym_string_literal, - STATE(532), 1, - sym_initializer_list, - STATE(620), 1, + STATE(698), 1, sym__expression, - ACTIONS(1351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1353), 2, + STATE(1277), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -45261,13 +45465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45278,7 +45482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7264] = 18, + [7510] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45289,13 +45493,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1685), 1, + ACTIONS(1695), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(738), 1, + STATE(693), 1, sym__expression, - STATE(1385), 1, + STATE(1275), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45331,7 +45535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45342,7 +45546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7346] = 18, + [7592] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45353,13 +45557,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1687), 1, + ACTIONS(1697), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(725), 1, + STATE(746), 1, sym__expression, - STATE(1332), 1, + STATE(1428), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45395,7 +45599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45406,7 +45610,71 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7428] = 18, + [7674] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1036), 1, + anon_sym_LPAREN2, + ACTIONS(1046), 1, + anon_sym_sizeof, + STATE(427), 1, + sym_string_literal, + STATE(516), 1, + sym_initializer_list, + STATE(630), 1, + sym__expression, + ACTIONS(1038), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(527), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [7756] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45417,13 +45685,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1689), 1, - anon_sym_RPAREN, - STATE(430), 1, + ACTIONS(1699), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(724), 1, + STATE(721), 1, sym__expression, - STATE(1333), 1, + STATE(1420), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45459,7 +45727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45470,7 +45738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7510] = 18, + [7838] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45481,13 +45749,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1701), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(713), 1, + STATE(711), 1, sym__expression, - STATE(1340), 1, + STATE(1385), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45523,7 +45791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45534,7 +45802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7592] = 18, + [7920] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45545,13 +45813,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(1703), 1, + anon_sym_RPAREN, + STATE(427), 1, sym_string_literal, - STATE(733), 1, + STATE(702), 1, sym__expression, - STATE(1414), 1, + STATE(1333), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45587,7 +45855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45598,7 +45866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7674] = 18, + [8002] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45609,13 +45877,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1695), 1, - anon_sym_RPAREN, - STATE(430), 1, + ACTIONS(1705), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(705), 1, + STATE(739), 1, sym__expression, - STATE(1351), 1, + STATE(1324), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45651,7 +45919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45662,7 +45930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7756] = 18, + [8084] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45673,13 +45941,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1697), 1, - anon_sym_RPAREN, - STATE(430), 1, + ACTIONS(1707), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(736), 1, + STATE(710), 1, sym__expression, - STATE(1316), 1, + STATE(1325), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45715,7 +45983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45726,7 +45994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7838] = 18, + [8166] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45737,13 +46005,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1699), 1, + ACTIONS(1709), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(727), 1, + STATE(741), 1, sym__expression, - STATE(1311), 1, + STATE(1360), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45779,7 +46047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45790,7 +46058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7920] = 18, + [8248] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45799,16 +46067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, + ACTIONS(884), 1, + anon_sym_LBRACE, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1701), 1, - anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(739), 1, + STATE(506), 1, sym__expression, - STATE(1310), 1, - sym_comma_expression, + STATE(516), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -45843,7 +46111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45854,37 +46122,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8002] = 18, + [8330] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(430), 1, + ACTIONS(1711), 1, + anon_sym_RPAREN, + STATE(427), 1, sym_string_literal, - STATE(532), 1, - sym_initializer_list, - STATE(620), 1, + STATE(732), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + STATE(1359), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + 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), 3, sym_true, sym_false, @@ -45901,13 +46169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45918,7 +46186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8084] = 18, + [8412] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45929,13 +46197,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1703), 1, + ACTIONS(1713), 1, anon_sym_SEMI, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(721), 1, + STATE(714), 1, sym__expression, - STATE(1281), 1, + STATE(1393), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -45971,7 +46239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -45982,7 +46250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8166] = 17, + [8494] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -45993,12 +46261,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1705), 1, + ACTIONS(1715), 1, anon_sym_SEMI, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(773), 1, + STATE(715), 1, sym__expression, + STATE(1395), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46033,7 +46303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46044,7 +46314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8245] = 17, + [8576] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46055,12 +46325,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1707), 1, + ACTIONS(1717), 1, anon_sym_SEMI, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(804), 1, + STATE(747), 1, sym__expression, + STATE(1398), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46095,7 +46367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46106,35 +46378,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8324] = 17, + [8658] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1709), 1, - anon_sym_RBRACK, - STATE(430), 1, + ACTIONS(1719), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(724), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + STATE(1415), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + 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), 3, sym_true, sym_false, @@ -46151,13 +46425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46168,7 +46442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8403] = 17, + [8740] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46179,12 +46453,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1711), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(1721), 1, + anon_sym_RPAREN, + STATE(427), 1, sym_string_literal, - STATE(792), 1, + STATE(720), 1, sym__expression, + STATE(1341), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46219,7 +46495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46230,55 +46506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1715), 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(1713), 30, - 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [8533] = 17, + [8822] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46289,11 +46517,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + ACTIONS(1723), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(719), 1, + STATE(696), 1, sym__expression, - STATE(1273), 1, + STATE(1280), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46329,7 +46559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46340,35 +46570,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8612] = 17, + [8904] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1717), 1, - anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(742), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + STATE(1236), 1, + sym_initializer_list, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + 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), 3, sym_true, sym_false, @@ -46385,13 +46617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46402,7 +46634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8691] = 17, + [8986] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46413,11 +46645,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + ACTIONS(1725), 1, + anon_sym_SEMI, + STATE(427), 1, sym_string_literal, - STATE(720), 1, + STATE(704), 1, sym__expression, - STATE(1418), 1, + STATE(1426), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46453,7 +46687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46464,7 +46698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8770] = 17, + [9068] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46475,12 +46709,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1719), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(1727), 1, + anon_sym_RPAREN, + STATE(427), 1, sym_string_literal, - STATE(764), 1, + STATE(691), 1, sym__expression, + STATE(1345), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -46515,7 +46751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46526,35 +46762,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8849] = 17, + [9150] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1721), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(1036), 1, + anon_sym_LPAREN2, + ACTIONS(1046), 1, + anon_sym_sizeof, + ACTIONS(1729), 1, + anon_sym_RBRACK, + STATE(427), 1, sym_string_literal, - STATE(815), 1, + STATE(621), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -46571,13 +46807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46588,33 +46824,81 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8928] = 17, + [9229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 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(1731), 30, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [9280] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - ACTIONS(1723), 1, + ACTIONS(1735), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(621), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46633,13 +46917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46650,33 +46934,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9007] = 17, + [9359] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - ACTIONS(1725), 1, + ACTIONS(1737), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(621), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46695,13 +46979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46712,35 +46996,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9086] = 17, + [9438] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1727), 1, - anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(689), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + STATE(1217), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + 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), 3, sym_true, sym_false, @@ -46757,13 +47041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46774,33 +47058,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9165] = 17, + [9517] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - ACTIONS(1729), 1, + ACTIONS(1739), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(621), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -46819,13 +47103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46836,7 +47120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9244] = 17, + [9596] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -46847,11 +47131,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1731), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(1741), 1, + anon_sym_RPAREN, + STATE(427), 1, sym_string_literal, - STATE(791), 1, + STATE(664), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -46887,7 +47171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46898,35 +47182,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9323] = 17, + [9675] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1733), 1, - anon_sym_RPAREN, - STATE(430), 1, + ACTIONS(1036), 1, + anon_sym_LPAREN2, + ACTIONS(1046), 1, + anon_sym_sizeof, + ACTIONS(1743), 1, + anon_sym_RBRACK, + STATE(427), 1, sym_string_literal, - STATE(687), 1, + STATE(621), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -46943,13 +47227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -46960,33 +47244,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9402] = 17, + [9754] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - ACTIONS(1735), 1, + ACTIONS(1745), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(621), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -47005,13 +47289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47022,35 +47306,35 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9481] = 17, + [9833] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1737), 1, - anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(744), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + STATE(1430), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + 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), 3, sym_true, sym_false, @@ -47067,13 +47351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47084,7 +47368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9560] = 17, + [9912] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47095,11 +47379,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(686), 1, + STATE(705), 1, sym__expression, - STATE(1213), 1, + STATE(1273), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47135,7 +47419,69 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [9991] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1036), 1, + anon_sym_LPAREN2, + ACTIONS(1046), 1, + anon_sym_sizeof, + ACTIONS(1747), 1, + anon_sym_RBRACK, + STATE(427), 1, + sym_string_literal, + STATE(621), 1, + sym__expression, + ACTIONS(1038), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(527), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47146,7 +47492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9639] = 17, + [10070] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47157,11 +47503,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1739), 1, + ACTIONS(1749), 1, anon_sym_RPAREN, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(684), 1, + STATE(678), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47197,7 +47543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47208,33 +47554,157 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9718] = 17, + [10149] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - ACTIONS(1741), 1, + ACTIONS(1751), 1, anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(621), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1038), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(527), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [10228] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1036), 1, + anon_sym_LPAREN2, + ACTIONS(1046), 1, + anon_sym_sizeof, + ACTIONS(1753), 1, + anon_sym_RBRACK, + STATE(427), 1, + sym_string_literal, + STATE(621), 1, + sym__expression, + ACTIONS(1038), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(527), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [10307] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1036), 1, + anon_sym_LPAREN2, + ACTIONS(1046), 1, + anon_sym_sizeof, + ACTIONS(1755), 1, + anon_sym_RBRACK, + STATE(427), 1, + sym_string_literal, + STATE(621), 1, + sym__expression, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -47253,13 +47723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47270,7 +47740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9797] = 17, + [10386] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47281,11 +47751,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1743), 1, - anon_sym_SEMI, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(826), 1, + STATE(756), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47321,7 +47789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47332,35 +47800,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9876] = 17, + [10462] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1745), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(1036), 1, + anon_sym_LPAREN2, + ACTIONS(1046), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(795), 1, + STATE(619), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -47377,13 +47843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47394,35 +47860,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9955] = 17, + [10538] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(888), 1, anon_sym_sizeof, - ACTIONS(1747), 1, - anon_sym_RBRACK, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(624), 1, + STATE(529), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -47439,13 +47903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47456,7 +47920,59 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10034] = 17, + [10614] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1761), 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(1757), 22, + 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_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, + [10674] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47467,11 +47983,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - ACTIONS(1749), 1, - anon_sym_SEMI, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(824), 1, + STATE(762), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47507,7 +48021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47518,33 +48032,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10113] = 17, + [10750] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1751), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(806), 1, + STATE(522), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -47563,13 +48075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47580,33 +48092,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10192] = 17, + [10826] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1753), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(1357), 1, + anon_sym_LPAREN2, + ACTIONS(1367), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(828), 1, + STATE(807), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1361), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -47625,13 +48135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47642,33 +48152,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10271] = 17, + [10902] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1755), 1, - anon_sym_SEMI, - STATE(430), 1, + ACTIONS(1357), 1, + anon_sym_LPAREN2, + ACTIONS(1367), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(825), 1, + STATE(806), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1361), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -47687,13 +48195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47704,71 +48212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10350] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1785), 1, - anon_sym_EQ, - ACTIONS(1787), 1, - anon_sym_QMARK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - 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, - [10434] = 16, + [10978] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -47779,9 +48223,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(714), 1, + STATE(529), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -47817,7 +48261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47828,82 +48272,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10510] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1795), 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(1793), 24, - 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_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, - [10568] = 16, + [11054] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1769), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(551), 1, + STATE(659), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -47922,13 +48315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -47939,22 +48332,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10644] = 8, + [11130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1799), 13, + ACTIONS(1445), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -47968,9 +48349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1797), 22, + ACTIONS(1439), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -47979,6 +48361,8 @@ 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, @@ -47991,31 +48375,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [10704] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [11180] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(1355), 1, sym_identifier, - STATE(430), 1, + ACTIONS(1357), 1, + anon_sym_LPAREN2, + ACTIONS(1367), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(648), 1, + STATE(805), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1361), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48034,13 +48422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48051,7 +48439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10780] = 16, + [11256] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48062,9 +48450,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(578), 1, + STATE(706), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48100,7 +48488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48111,31 +48499,78 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10856] = 16, + [11332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1773), 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(1771), 29, + 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_DOT, + anon_sym_DASH_GT, + [11382] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(632), 1, + STATE(825), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48154,13 +48589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48171,31 +48606,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10932] = 16, + [11458] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(766), 1, + STATE(802), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48214,13 +48649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48231,31 +48666,84 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11008] = 16, + [11534] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1441), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, + ACTIONS(1447), 1, + anon_sym_STAR, + ACTIONS(1452), 1, + anon_sym_EQ, + ACTIONS(1462), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1450), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1456), 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(1445), 11, + anon_sym_DASH, + anon_sym_PLUS, + 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(1439), 12, + anon_sym_COMMA, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [11596] = 16, + ACTIONS(3), 1, + sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(1355), 1, sym_identifier, - STATE(430), 1, + ACTIONS(1367), 1, + anon_sym_sizeof, + ACTIONS(1775), 1, + anon_sym_LPAREN2, + STATE(427), 1, sym_string_literal, - STATE(718), 1, + STATE(754), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1361), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48274,13 +48762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48291,31 +48779,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11084] = 16, + [11672] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(503), 1, + STATE(627), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48334,13 +48822,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48351,70 +48839,61 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11160] = 16, + [11748] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1341), 1, - sym_identifier, - STATE(430), 1, - sym_string_literal, - STATE(653), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1779), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1777), 24, + 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_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, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(609), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [11236] = 3, + [11806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 13, + ACTIONS(1783), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -48428,7 +48907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1801), 29, + ACTIONS(1781), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -48458,33 +48937,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [11286] = 16, + [11856] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1787), 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(1785), 22, + 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_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, + [11916] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(763), 1, + STATE(621), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -48501,13 +49032,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48518,31 +49049,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11362] = 16, + [11992] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(762), 1, + STATE(622), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48561,13 +49092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48578,7 +49109,54 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11438] = 16, + [12068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 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(1439), 29, + 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_DOT, + anon_sym_DASH_GT, + [12118] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48589,9 +49167,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(651), 1, + STATE(752), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48627,7 +49205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48638,7 +49216,59 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11514] = 16, + [12194] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1791), 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(1789), 22, + 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_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, + [12254] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48649,9 +49279,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(658), 1, + STATE(649), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48687,7 +49317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48698,31 +49328,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11590] = 16, + [12330] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1349), 1, - anon_sym_LPAREN2, - ACTIONS(1359), 1, - anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(761), 1, + STATE(760), 1, sym__expression, - ACTIONS(1351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48741,13 +49371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48758,7 +49388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11666] = 16, + [12406] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48769,9 +49399,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(652), 1, + STATE(582), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48807,7 +49437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48818,151 +49448,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11742] = 16, + [12482] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(1088), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(81), 1, anon_sym_sizeof, - STATE(430), 1, - sym_string_literal, - STATE(624), 1, - sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(555), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [11818] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1349), 1, - anon_sym_LPAREN2, - ACTIONS(1359), 1, - anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(622), 1, + STATE(657), 1, sym__expression, - ACTIONS(1351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1357), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(638), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [11894] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1349), 1, - anon_sym_LPAREN2, - ACTIONS(1359), 1, - anon_sym_sizeof, - STATE(430), 1, - sym_string_literal, - STATE(760), 1, - sym__expression, - ACTIONS(1351), 2, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -48981,13 +49491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48998,7 +49508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11970] = 16, + [12558] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49009,9 +49519,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(654), 1, + STATE(656), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49047,7 +49557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49058,7 +49568,54 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12046] = 16, + [12634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 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(1793), 29, + 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_DOT, + anon_sym_DASH_GT, + [12684] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49069,9 +49626,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(656), 1, + STATE(655), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49107,7 +49664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49118,7 +49675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12122] = 16, + [12760] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49129,9 +49686,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(657), 1, + STATE(654), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49167,7 +49724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49178,31 +49735,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12198] = 16, + [12836] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(888), 1, - anon_sym_sizeof, - ACTIONS(1805), 1, - anon_sym_LPAREN2, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(592), 1, + STATE(653), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49221,13 +49778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49238,78 +49795,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12274] = 3, + [12912] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 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(1807), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(19), 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, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [12324] = 16, - ACTIONS(3), 1, - sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1349), 1, - anon_sym_LPAREN2, - ACTIONS(1359), 1, - anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(757), 1, + STATE(648), 1, sym__expression, - ACTIONS(1351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49328,13 +49838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49345,31 +49855,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12400] = 16, + [12988] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1349), 1, - anon_sym_LPAREN2, - ACTIONS(1359), 1, - anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(756), 1, + STATE(652), 1, sym__expression, - ACTIONS(1351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49388,13 +49898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49405,106 +49915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1813), 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(1811), 29, - 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_DOT, - anon_sym_DASH_GT, - [12526] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1817), 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(1815), 22, - 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_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, - [12586] = 16, + [13064] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49515,9 +49926,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(754), 1, + STATE(651), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49553,7 +49964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49564,85 +49975,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12662] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1821), 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(1819), 22, - 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_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, - [12726] = 16, + [13140] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1823), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - STATE(430), 1, + ACTIONS(1367), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(649), 1, + STATE(757), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1361), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49661,13 +50018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49678,7 +50035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12802] = 16, + [13216] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49689,9 +50046,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(659), 1, + STATE(650), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49727,7 +50084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49738,31 +50095,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12878] = 16, + [13292] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(767), 1, + STATE(808), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -49781,13 +50138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49798,41 +50155,27 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12954] = 11, + [13368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, + ACTIONS(1799), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 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(1819), 22, + ACTIONS(1797), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -49841,6 +50184,8 @@ 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, @@ -49853,111 +50198,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [13020] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1349), 1, - anon_sym_LPAREN2, - ACTIONS(1359), 1, - anon_sym_sizeof, - STATE(430), 1, - sym_string_literal, - STATE(621), 1, - sym__expression, - ACTIONS(1351), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1353), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1357), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(638), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [13096] = 13, + anon_sym_DOT, + anon_sym_DASH_GT, + [13418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, + ACTIONS(1803), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 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(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1781), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1789), 2, + anon_sym_EQ, + ACTIONS(1801), 29, + 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, - ACTIONS(1791), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1763), 3, + [13468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1807), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 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(1819), 20, + ACTIONS(1805), 29, 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, @@ -49970,31 +50292,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [13166] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13518] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(578), 1, + STATE(635), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50013,13 +50339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50030,52 +50356,37 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13242] = 14, + [13594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, + ACTIONS(1811), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 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(1819), 18, + ACTIONS(1809), 29, 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_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -50088,51 +50399,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [13314] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [13644] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1341), 1, + sym_identifier, + STATE(427), 1, + sym_string_literal, + STATE(759), 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), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(609), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [13720] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - STATE(562), 1, + ACTIONS(1819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1821), 1, + anon_sym_AMP_AMP, + ACTIONS(1823), 1, + anon_sym_PIPE, + ACTIONS(1825), 1, + anon_sym_CARET, + ACTIONS(1827), 1, + anon_sym_AMP, + ACTIONS(1837), 1, + anon_sym_EQ, + STATE(546), 1, sym_argument_list, - ACTIONS(1761), 2, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1775), 2, + ACTIONS(1829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1831), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1779), 2, + ACTIONS(1833), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1781), 2, + ACTIONS(1835), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, + ACTIONS(1817), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1819), 18, + ACTIONS(1813), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -50147,31 +50526,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [13388] = 16, + [13802] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1359), 1, - anon_sym_sizeof, - ACTIONS(1825), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - STATE(430), 1, + ACTIONS(1367), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(819), 1, + STATE(820), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50190,13 +50569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50207,31 +50586,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13464] = 16, + [13878] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(573), 1, + STATE(723), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50250,13 +50629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50267,214 +50646,151 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13540] = 16, + [13954] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1341), 1, + sym_identifier, + STATE(427), 1, + sym_string_literal, + STATE(522), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1821), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1763), 3, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1819), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - [13616] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1821), 1, - anon_sym_EQ, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1789), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1819), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - [13694] = 18, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(609), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [14030] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1821), 1, - anon_sym_EQ, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(1341), 1, + sym_identifier, + STATE(427), 1, + sym_string_literal, + STATE(771), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1789), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1819), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - 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, - [13774] = 16, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(609), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [14106] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(775), 1, + STATE(801), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50493,13 +50809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50510,84 +50826,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13850] = 9, + [14182] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1821), 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(1819), 22, - 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_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, - [13912] = 16, - ACTIONS(3), 1, - sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(549), 1, + STATE(824), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50606,13 +50869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50623,31 +50886,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13988] = 16, + [14258] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, - ACTIONS(888), 1, - anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(548), 1, + STATE(827), 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(876), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(878), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50666,13 +50929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50683,31 +50946,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14064] = 16, + [14334] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(752), 1, + STATE(524), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -50726,13 +50989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50743,101 +51006,67 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14140] = 3, + [14410] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(427), 1, + sym_string_literal, + STATE(594), 1, + sym__expression, + ACTIONS(25), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1439), 29, - 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_DOT, - anon_sym_DASH_GT, - [14190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1829), 13, + ACTIONS(876), 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, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1827), 29, - 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_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, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14240] = 16, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(527), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [14486] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -50848,9 +51077,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1341), 1, sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(771), 1, + STATE(658), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -50886,7 +51115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -50897,86 +51126,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14316] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN2, - ACTIONS(1447), 1, - anon_sym_STAR, - ACTIONS(1455), 1, - anon_sym_EQ, - ACTIONS(1450), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(1453), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1459), 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(1445), 11, - anon_sym_DASH, - anon_sym_PLUS, - 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(1439), 12, - anon_sym_COMMA, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14378] = 16, + [14562] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, - anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + ACTIONS(1839), 1, + anon_sym_LPAREN2, + STATE(427), 1, sym_string_literal, - STATE(547), 1, + STATE(625), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -50993,13 +51169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51010,188 +51186,91 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14454] = 19, + [14638] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1769), 1, - anon_sym_PIPE, - ACTIONS(1771), 1, - anon_sym_CARET, - ACTIONS(1773), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_EQ, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1779), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1831), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [14536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1837), 13, + ACTIONS(1046), 1, + anon_sym_sizeof, + STATE(427), 1, + sym_string_literal, + STATE(627), 1, + sym__expression, + ACTIONS(1038), 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, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1835), 29, - 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, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [14586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1363), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1839), 29, - 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_DOT, - anon_sym_DASH_GT, - [14636] = 16, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(527), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [14714] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(1355), 1, sym_identifier, - STATE(430), 1, + ACTIONS(1357), 1, + anon_sym_LPAREN2, + ACTIONS(1367), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(655), 1, + STATE(798), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1361), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51210,13 +51289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51227,31 +51306,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14712] = 16, + [14790] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(870), 1, sym_identifier, - STATE(430), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(808), 1, + STATE(595), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51270,13 +51349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51287,7 +51366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14788] = 16, + [14866] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -51298,9 +51377,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(505), 1, + STATE(596), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -51330,13 +51409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51347,80 +51426,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1845), 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(1843), 29, - 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_DOT, - anon_sym_DASH_GT, - [14914] = 16, + [14942] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(758), 1, + STATE(622), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51437,13 +51469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51454,31 +51486,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14990] = 16, + [15018] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(870), 1, sym_identifier, - STATE(430), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(573), 1, + STATE(597), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -51497,13 +51529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51514,33 +51546,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15066] = 16, + [15094] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(870), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(774), 1, + STATE(620), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1357), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51557,13 +51589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(638), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51574,33 +51606,80 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15142] = 16, + [15170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1843), 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(1841), 29, + 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_DOT, + anon_sym_DASH_GT, + [15220] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(544), 1, + STATE(632), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51617,13 +51696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51634,31 +51713,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15218] = 16, + [15296] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(623), 1, + STATE(631), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -51677,13 +51756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51694,33 +51773,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15294] = 16, + [15372] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(626), 1, + STATE(598), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51737,13 +51816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51754,85 +51833,93 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15370] = 8, + [15448] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(83), 1, + sym_number_literal, + ACTIONS(870), 1, + sym_identifier, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1849), 13, + ACTIONS(1046), 1, + anon_sym_sizeof, + STATE(427), 1, + sym_string_literal, + STATE(629), 1, + sym__expression, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1363), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1847), 22, - 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_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, - [15430] = 16, + ACTIONS(89), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(85), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(87), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(527), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [15524] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(543), 1, + STATE(628), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -51849,13 +51936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51866,54 +51953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1853), 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(1851), 29, - 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_DOT, - anon_sym_DASH_GT, - [15556] = 16, + [15600] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -51924,9 +51964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(541), 1, + STATE(599), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -51956,13 +51996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51973,31 +52013,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15632] = 16, + [15676] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(870), 1, sym_identifier, - STATE(430), 1, + ACTIONS(888), 1, + anon_sym_sizeof, + ACTIONS(1845), 1, + anon_sym_LPAREN2, + STATE(427), 1, sym_string_literal, - STATE(772), 1, + STATE(606), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52016,13 +52056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52033,85 +52073,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15708] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1821), 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(1819), 22, - 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_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, - [15768] = 16, + [15752] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(870), 1, sym_identifier, - STATE(430), 1, + ACTIONS(1036), 1, + anon_sym_LPAREN2, + ACTIONS(1046), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(650), 1, + STATE(626), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1040), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52128,13 +52116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52145,33 +52133,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15844] = 16, + [15828] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(507), 1, + STATE(624), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52188,13 +52176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52205,10 +52193,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15920] = 3, + [15904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 13, + ACTIONS(1849), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -52222,7 +52210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1855), 29, + ACTIONS(1847), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -52233,9 +52221,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -52252,70 +52240,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [15970] = 16, + [15954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1341), 1, - sym_identifier, - STATE(430), 1, - sym_string_literal, - STATE(505), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1853), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1851), 29, + 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_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, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(609), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16046] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + [16004] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 13, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1857), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -52329,10 +52316,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1859), 29, + ACTIONS(1855), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -52341,8 +52327,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, @@ -52355,37 +52339,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [16064] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1821), 1, + anon_sym_AMP_AMP, + ACTIONS(1823), 1, + anon_sym_PIPE, + ACTIONS(1825), 1, + anon_sym_CARET, + ACTIONS(1827), 1, + anon_sym_AMP, + ACTIONS(1861), 1, + anon_sym_EQ, + ACTIONS(1863), 1, + anon_sym_QMARK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - [16096] = 16, + ACTIONS(1815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1829), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1831), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1833), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1859), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + 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, + [16148] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(629), 1, + STATE(600), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52402,13 +52446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52419,10 +52463,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16172] = 3, + [16224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 13, + ACTIONS(1867), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -52436,7 +52480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1863), 29, + ACTIONS(1865), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -52466,91 +52510,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [16222] = 16, + [16274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(430), 1, - sym_string_literal, - STATE(631), 1, - sym__expression, - ACTIONS(1090), 2, + ACTIONS(1871), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(555), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16298] = 16, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1869), 29, + 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_DOT, + anon_sym_DASH_GT, + [16324] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(634), 1, + STATE(623), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -52569,13 +52600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52586,33 +52617,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16374] = 16, + [16400] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(874), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(888), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(539), 1, + STATE(633), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(876), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(878), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(886), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52624,76 +52655,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8_SQUOTE, anon_sym_SQUOTE, ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(555), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [16450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1445), 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(1439), 29, - 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_DOT, - anon_sym_DASH_GT, - [16500] = 16, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(527), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(513), 10, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [16476] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -52704,9 +52688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(888), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(535), 1, + STATE(583), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -52736,13 +52720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52753,31 +52737,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16576] = 16, + [16552] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1341), 1, + ACTIONS(870), 1, sym_identifier, - STATE(430), 1, + ACTIONS(874), 1, + anon_sym_LPAREN2, + ACTIONS(888), 1, + anon_sym_sizeof, + STATE(427), 1, sym_string_literal, - STATE(788), 1, + STATE(601), 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, + ACTIONS(876), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(878), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -52796,13 +52780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52813,88 +52797,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16652] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1761), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1781), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1763), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1869), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(1867), 22, - 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_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, - [16718] = 16, + [16628] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(635), 1, + STATE(788), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(1365), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 3, sym_true, sym_false, @@ -52911,13 +52840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52928,33 +52857,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16794] = 16, + [16704] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(625), 1, + STATE(582), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -52971,13 +52900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52988,33 +52917,33 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16870] = 16, + [16780] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(874), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(888), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(627), 1, + STATE(604), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(876), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(878), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(886), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -53031,13 +52960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53048,33 +52977,499 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16946] = 16, + [16856] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1857), 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(1855), 22, + 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_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, + [16920] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1857), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1855), 22, + 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_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, + [16986] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1831), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1833), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1857), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1855), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_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, + [17056] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1829), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1831), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1833), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1857), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1855), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [17128] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1827), 1, + anon_sym_AMP, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1829), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1831), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1833), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1857), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(1855), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [17202] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1825), 1, + anon_sym_CARET, + ACTIONS(1827), 1, + anon_sym_AMP, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1829), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1831), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1833), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1857), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1855), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [17278] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_PIPE, + ACTIONS(1825), 1, + anon_sym_CARET, + ACTIONS(1827), 1, + anon_sym_AMP, + ACTIONS(1857), 1, + anon_sym_EQ, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1829), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1831), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1833), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1855), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [17356] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_AMP_AMP, + ACTIONS(1823), 1, + anon_sym_PIPE, + ACTIONS(1825), 1, + anon_sym_CARET, + ACTIONS(1827), 1, + anon_sym_AMP, + ACTIONS(1857), 1, + anon_sym_EQ, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1829), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1831), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1833), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1817), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1855), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + 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, + [17436] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(628), 1, + STATE(828), 1, sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + 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), 3, sym_true, sym_false, @@ -53091,13 +53486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(609), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53108,31 +53503,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17022] = 16, + [17512] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, ACTIONS(870), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1036), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, + ACTIONS(1046), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(632), 1, + STATE(635), 1, sym__expression, - ACTIONS(1090), 2, + ACTIONS(1038), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1092), 2, + ACTIONS(1040), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1044), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(89), 3, @@ -53151,13 +53546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(527), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53168,15 +53563,28 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17098] = 3, + [17588] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1817), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1857), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -53185,10 +53593,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1871), 29, + ACTIONS(1855), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53197,8 +53604,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, @@ -53211,74 +53616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [17148] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1341), 1, - sym_identifier, - STATE(430), 1, - sym_string_literal, - STATE(779), 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), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(609), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17224] = 3, + [17650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 13, + ACTIONS(1875), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -53292,7 +53633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1875), 29, + ACTIONS(1873), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -53322,273 +53663,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17274] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(430), 1, - sym_string_literal, - STATE(633), 1, - sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(555), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17350] = 16, + [17700] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(1088), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(430), 1, - sym_string_literal, - STATE(622), 1, - sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(555), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17426] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1341), 1, - sym_identifier, - STATE(430), 1, - sym_string_literal, - STATE(755), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1815), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1817), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1879), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(609), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17502] = 16, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1877), 22, + 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_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, + [17766] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(1347), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(1359), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(746), 1, + STATE(804), 1, sym__expression, - ACTIONS(1351), 2, + ACTIONS(1359), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1353), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1355), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1357), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(638), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17578] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(870), 1, - sym_identifier, - ACTIONS(1088), 1, - anon_sym_LPAREN2, - ACTIONS(1098), 1, - anon_sym_sizeof, - STATE(430), 1, - sym_string_literal, - STATE(621), 1, - sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 3, sym_true, sym_false, @@ -53605,13 +53761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(555), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53622,151 +53778,31 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17654] = 16, + [17842] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, sym_number_literal, - ACTIONS(870), 1, + ACTIONS(1355), 1, sym_identifier, - ACTIONS(1098), 1, - anon_sym_sizeof, - ACTIONS(1879), 1, - anon_sym_LPAREN2, - STATE(430), 1, - sym_string_literal, - STATE(619), 1, - sym__expression, - ACTIONS(1090), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1092), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1096), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(555), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17730] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + ACTIONS(1357), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1367), 1, anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1341), 1, - sym_identifier, - STATE(430), 1, + STATE(427), 1, sym_string_literal, - STATE(787), 1, + STATE(810), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1359), 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), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(85), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(87), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(609), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(589), 10, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [17806] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - sym_number_literal, - ACTIONS(1341), 1, - sym_identifier, - STATE(430), 1, - sym_string_literal, - STATE(799), 1, - sym__expression, - ACTIONS(21), 2, + ACTIONS(1361), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1365), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 3, @@ -53785,13 +53821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(609), 5, + STATE(637), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(589), 10, + STATE(513), 10, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53802,12 +53838,12 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [17882] = 5, + [17918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1459), 10, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -53850,7 +53886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17935] = 20, + [17971] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -53873,13 +53909,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, ACTIONS(1395), 1, sym_identifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(927), 1, + STATE(946), 1, sym__declaration_specifiers, - STATE(1208), 2, + STATE(1150), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(45), 4, @@ -53898,7 +53934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -53912,61 +53948,58 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [18017] = 6, + [18053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, - anon_sym_EQ, - ACTIONS(1461), 1, - anon_sym_COLON, - ACTIONS(1459), 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(1445), 12, + ACTIONS(1351), 18, 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_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(1353), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1439), 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_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [18070] = 6, + 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, + [18100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1457), 1, + ACTIONS(1460), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54006,10 +54039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18123] = 3, + [18153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 18, + ACTIONS(1733), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -54028,7 +54061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1367), 21, + ACTIONS(1731), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -54050,10 +54083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18170] = 3, + [18200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 18, + ACTIONS(1347), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -54072,7 +54105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1713), 21, + ACTIONS(1349), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -54094,14 +54127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18217] = 6, + [18247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, - ACTIONS(1463), 1, + ACTIONS(1458), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54141,58 +54174,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18270] = 3, + [18300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 18, + ACTIONS(1452), 1, + anon_sym_EQ, + ACTIONS(1454), 1, + anon_sym_COLON, + ACTIONS(1456), 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(1445), 12, 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_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(1363), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1439), 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_LBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [18317] = 6, + anon_sym_DOT, + anon_sym_DASH_GT, + [18353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1452), 1, anon_sym_EQ, ACTIONS(1465), 1, anon_sym_COLON, - ACTIONS(1459), 10, + ACTIONS(1456), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54232,7 +54268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18370] = 19, + [18406] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -54253,13 +54289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(1395), 1, sym_identifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(927), 1, + STATE(946), 1, sym__declaration_specifiers, - STATE(1229), 2, + STATE(1224), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(45), 4, @@ -54278,7 +54314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -54292,45 +54328,49 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [18449] = 11, + [18485] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, + ACTIONS(1889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1891), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1893), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1857), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1869), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(1867), 18, + ACTIONS(1855), 14, 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, @@ -54343,44 +54383,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18511] = 8, + [18555] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, + ACTIONS(1861), 1, + anon_sym_EQ, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, + anon_sym_AMP_AMP, + ACTIONS(1901), 1, + anon_sym_PIPE, + ACTIONS(1903), 1, + anon_sym_CARET, + ACTIONS(1905), 1, + anon_sym_QMARK, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1817), 13, + ACTIONS(1883), 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, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1815), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1889), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1891), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1893), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1859), 11, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54391,22 +54443,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18567] = 8, + [18635] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1849), 13, + ACTIONS(1787), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54420,7 +54472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1847), 18, + ACTIONS(1785), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54439,19 +54491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18623] = 7, + [18691] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1795), 13, + ACTIONS(1779), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -54465,7 +54517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1793), 20, + ACTIONS(1777), 20, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54486,43 +54538,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [18677] = 9, + [18745] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, + ACTIONS(1857), 1, + anon_sym_EQ, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1899), 1, + anon_sym_AMP_AMP, + ACTIONS(1901), 1, + anon_sym_PIPE, + ACTIONS(1903), 1, + anon_sym_CARET, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1885), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1821), 10, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1891), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1893), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1819), 18, + ACTIONS(1885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1855), 13, 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, @@ -54535,42 +54596,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18735] = 8, + [18821] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, + ACTIONS(1857), 1, + anon_sym_EQ, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1901), 1, + anon_sym_PIPE, + ACTIONS(1903), 1, + anon_sym_CARET, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1799), 13, + ACTIONS(1883), 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(1889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1891), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1893), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1797), 18, + ACTIONS(1885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1855), 14, 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, @@ -54583,47 +54653,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18791] = 13, + [18895] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1889), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1891), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 4, + ACTIONS(1879), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(1819), 16, + ACTIONS(1877), 18, 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, @@ -54636,103 +54704,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18857] = 18, + [18957] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, - anon_sym_EQ, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1893), 1, - anon_sym_AMP_AMP, - ACTIONS(1895), 1, - anon_sym_PIPE, - ACTIONS(1897), 1, - anon_sym_CARET, - ACTIONS(1899), 1, + ACTIONS(1887), 1, anon_sym_AMP, - STATE(562), 1, + ACTIONS(1903), 1, + anon_sym_CARET, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(1857), 2, + anon_sym_PIPE, + anon_sym_EQ, ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(1889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1891), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1891), 2, + ACTIONS(1893), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1901), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1885), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1819), 13, - 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, - [18933] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1883), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1887), 2, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(1819), 18, + ACTIONS(1855), 14, 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, @@ -54745,29 +54760,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18995] = 10, + [19029] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1883), 2, + ACTIONS(1791), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -54776,7 +54789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1819), 18, + ACTIONS(1789), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54795,49 +54808,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19055] = 17, + [19085] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, - anon_sym_EQ, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1895), 1, - anon_sym_PIPE, - ACTIONS(1897), 1, - anon_sym_CARET, - ACTIONS(1899), 1, - anon_sym_AMP, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(1889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1891), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1891), 2, + ACTIONS(1893), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1901), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1819), 14, + ACTIONS(1857), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1855), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, @@ -54852,53 +54862,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19129] = 19, + [19153] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_EQ, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1893), 1, - anon_sym_AMP_AMP, - ACTIONS(1895), 1, - anon_sym_PIPE, - ACTIONS(1897), 1, - anon_sym_CARET, - ACTIONS(1899), 1, - anon_sym_AMP, - ACTIONS(1903), 1, - anon_sym_PIPE_PIPE, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1889), 2, + ACTIONS(1891), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1891), 2, + ACTIONS(1893), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1901), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1831), 12, + ACTIONS(1857), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1855), 16, + 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, @@ -54911,50 +54915,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19207] = 16, + [19219] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1897), 1, - anon_sym_CARET, - ACTIONS(1899), 1, - anon_sym_AMP, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1821), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1883), 2, + ACTIONS(1761), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1889), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1891), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1901), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1819), 14, + 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(1757), 18, 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, @@ -54967,36 +54963,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19279] = 8, + [19275] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1821), 13, + ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1857), 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(1819), 18, + ACTIONS(1855), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -55015,56 +55014,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19335] = 20, + [19337] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1785), 1, - anon_sym_EQ, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1893), 1, - anon_sym_AMP_AMP, - ACTIONS(1895), 1, - anon_sym_PIPE, - ACTIONS(1897), 1, - anon_sym_CARET, - ACTIONS(1899), 1, - anon_sym_AMP, - ACTIONS(1903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1905), 1, - anon_sym_QMARK, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1889), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1891), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1901), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1757), 11, + ACTIONS(1857), 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(1855), 18, + 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, @@ -55075,49 +55064,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19415] = 15, + [19397] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(1899), 1, - anon_sym_AMP, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1883), 2, + ACTIONS(1885), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1857), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1889), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1891), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1901), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1821), 3, 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(1885), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1819), 14, + ACTIONS(1855), 18, 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, @@ -55130,48 +55113,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19485] = 14, + [19455] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, + ACTIONS(1837), 1, + anon_sym_EQ, ACTIONS(1881), 1, anon_sym_LPAREN2, - STATE(562), 1, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, + anon_sym_AMP_AMP, + ACTIONS(1901), 1, + anon_sym_PIPE, + ACTIONS(1903), 1, + anon_sym_CARET, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1883), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(1889), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1891), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1891), 2, + ACTIONS(1893), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1901), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1885), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1821), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1819), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1813), 12, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -55184,9 +55172,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19553] = 3, + [19533] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(1857), 13, anon_sym_DASH, anon_sym_PLUS, @@ -55201,15 +55201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1855), 24, - anon_sym_LPAREN2, + ACTIONS(1855), 18, 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, @@ -55222,14 +55220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19598] = 3, + [19589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 13, + ACTIONS(1853), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55243,7 +55237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1801), 24, + ACTIONS(1851), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -55268,7 +55262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19643] = 5, + [19634] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1907), 1, @@ -55312,10 +55306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19692] = 3, + [19683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 13, + ACTIONS(1783), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -55329,7 +55323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1827), 24, + ACTIONS(1781), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -55354,7 +55348,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19737] = 17, + [19728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 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(1809), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19773] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + anon_sym___attribute__, + ACTIONS(1921), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1924), 1, + anon_sym___declspec, + ACTIONS(1927), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1915), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(1913), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(640), 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(1911), 11, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [19829] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55373,11 +55456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1026), 1, + STATE(1018), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55395,7 +55478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -55409,7 +55492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [19809] = 17, + [19901] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55428,11 +55511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1035), 1, + STATE(1031), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55450,7 +55533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -55464,7 +55547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [19881] = 17, + [19973] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55483,11 +55566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1029), 1, + STATE(1014), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55505,7 +55588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -55517,56 +55600,9 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_declaration, sym_ms_declspec_modifier, sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [19953] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - anon_sym___attribute__, - ACTIONS(1921), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1924), 1, - anon_sym___declspec, - ACTIONS(1927), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1915), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1913), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(643), 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(1911), 11, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [20009] = 17, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [20045] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55585,11 +55621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - STATE(703), 1, + STATE(707), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1040), 1, + STATE(1029), 1, sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_const, @@ -55607,7 +55643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -55621,7 +55657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20081] = 16, + [20117] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -55640,9 +55676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1395), 1, sym_identifier, - STATE(700), 1, + STATE(743), 1, sym__type_specifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(45), 4, anon_sym_const, @@ -55660,13 +55696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(643), 7, + STATE(640), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -55674,7 +55710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20150] = 19, + [20186] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(1387), 1, @@ -55687,15 +55723,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1938), 1, anon_sym_LBRACK, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1024), 1, + STATE(1017), 1, sym__declarator, STATE(1108), 1, sym__abstract_declarator, - STATE(1142), 1, + STATE(1141), 1, sym_parameter_list, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, ACTIONS(1932), 2, anon_sym_COMMA, @@ -55706,7 +55742,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(831), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(833), 2, + STATE(837), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, ACTIONS(1934), 3, @@ -55718,18 +55754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1143), 4, + STATE(1142), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [20224] = 5, + [20260] = 5, ACTIONS(3), 1, sym_comment, STATE(647), 2, @@ -55768,34 +55804,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [20268] = 10, + [20304] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(1857), 2, + anon_sym_PIPE, + anon_sym_AMP, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1821), 6, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1819), 15, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1855), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -55803,301 +55847,292 @@ 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_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20321] = 12, + [20365] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - STATE(562), 1, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1869), 4, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1867), 13, - 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, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1813), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20378] = 20, + [20436] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1757), 5, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1859), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [20451] = 17, + [20509] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1857), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1819), 8, + ACTIONS(1855), 15, 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_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20518] = 16, + [20564] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1963), 1, - anon_sym_AMP, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1857), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1819), 9, + ACTIONS(1855), 13, 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_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20583] = 18, + [20621] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(1857), 2, + anon_sym_PIPE, + anon_sym_AMP, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1819), 7, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1855), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20652] = 15, + [20684] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1857), 1, + anon_sym_PIPE, + ACTIONS(1951), 1, anon_sym_SLASH, - STATE(562), 1, + ACTIONS(1967), 1, + anon_sym_AMP, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1821), 2, - anon_sym_PIPE, - anon_sym_AMP, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1819), 9, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1855), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -56107,229 +56142,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20715] = 19, + [20749] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1857), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1831), 6, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1855), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20786] = 14, + [20816] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - STATE(562), 1, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1821), 2, - anon_sym_PIPE, - anon_sym_AMP, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1819), 11, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1855), 8, 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_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20847] = 12, + [20883] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - STATE(562), 1, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1821), 4, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1819), 13, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1855), 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, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20904] = 17, + [20952] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, + ACTIONS(1949), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(1857), 6, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1819), 8, + ACTIONS(1855), 15, 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_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [20971] = 11, + [21005] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1821), 4, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1879), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1819), 15, + ACTIONS(1877), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -56339,13 +56377,11 @@ 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_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [21026] = 3, + [21062] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1975), 9, @@ -56381,10 +56417,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21065] = 3, + [21101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1977), 22, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 11, + ACTIONS(1981), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_const, @@ -56396,7 +56467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_identifier, - ACTIONS(1979), 19, + ACTIONS(1983), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -56416,19 +56487,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [21103] = 3, + [21177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1054), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1052), 28, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21214] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(1985), 1, + anon_sym_COMMA, + ACTIONS(1987), 1, + anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + STATE(1184), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [21289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 8, + ACTIONS(1353), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1981), 22, + ACTIONS(1351), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -56451,12 +56608,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21141] = 3, + [21326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, + ACTIONS(1991), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1989), 28, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1995), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1985), 28, + ACTIONS(1993), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56485,12 +56676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21178] = 3, + [21400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 1, + ACTIONS(1999), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1044), 28, + ACTIONS(1997), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56519,12 +56710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21215] = 3, + [21437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1991), 1, + ACTIONS(1050), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1989), 28, + ACTIONS(1048), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56553,12 +56744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21252] = 3, + [21474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 1, + ACTIONS(1078), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1993), 28, + ACTIONS(1076), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56587,12 +56778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21289] = 3, + [21511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 1, + ACTIONS(1090), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 28, + ACTIONS(1088), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56621,12 +56812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21326] = 3, + [21548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2003), 1, + ACTIONS(1070), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2001), 28, + ACTIONS(1068), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56655,76 +56846,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21363] = 22, + [21585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2005), 1, - anon_sym_COMMA, - ACTIONS(2007), 1, - anon_sym_RBRACE, - STATE(562), 1, - sym_argument_list, - STATE(1201), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21438] = 3, + ACTIONS(1058), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1056), 28, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1363), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2003), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1361), 22, + ACTIONS(2001), 28, + 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_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56742,23 +56914,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21475] = 3, + [21659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1367), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2007), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1365), 22, + ACTIONS(2005), 28, + 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_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56776,7 +56948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21512] = 3, + [21696] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2011), 1, @@ -56810,12 +56982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21549] = 3, + [21733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 1, + ACTIONS(2015), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1080), 28, + ACTIONS(2013), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56844,12 +57016,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21586] = 3, + [21770] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(1985), 1, + anon_sym_COMMA, + ACTIONS(2017), 1, + anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + STATE(1164), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [21845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(2021), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1116), 28, + ACTIONS(2019), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56878,12 +57103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21623] = 3, + [21882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1042), 1, + ACTIONS(2025), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1040), 28, + ACTIONS(2023), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56912,23 +57137,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21660] = 3, + [21919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, + ACTIONS(1349), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2013), 28, - 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(1347), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -56946,12 +57171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21697] = 3, + [21956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 1, + ACTIONS(2029), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1068), 28, + ACTIONS(2027), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -56980,12 +57205,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21734] = 3, + [21993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 1, + ACTIONS(2033), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1112), 28, + ACTIONS(2031), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57014,12 +57239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21771] = 3, + [22030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2037), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2017), 28, + ACTIONS(2035), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57048,12 +57273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21808] = 3, + [22067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(2041), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2021), 28, + ACTIONS(2039), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57082,23 +57307,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21845] = 3, + [22104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 1, + ACTIONS(2045), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2025), 28, - 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(2043), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -57116,23 +57341,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21882] = 3, + [22141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(1983), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2029), 28, - 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(1981), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -57150,12 +57375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21919] = 3, + [22178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, + ACTIONS(2049), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2033), 28, + ACTIONS(2047), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -57184,2719 +57409,3562 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21956] = 22, + [22215] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2053), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [22288] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2055), 1, + anon_sym_COMMA, + ACTIONS(2057), 1, + anon_sym_RBRACE, + STATE(546), 1, + sym_argument_list, + STATE(1167), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [22363] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2059), 1, + anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [22435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1635), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1637), 26, + 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22471] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2061), 1, + anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [22543] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2063), 1, + anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [22615] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2065), 1, + anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [22687] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2067), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [22759] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2069), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [22831] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2071), 1, + anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [22903] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2073), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [22975] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2075), 1, + anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [23047] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2077), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [23119] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2037), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2039), 1, + ACTIONS(2079), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - STATE(1189), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [23191] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2081), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(1969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + [23263] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2083), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22031] = 3, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [23335] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 7, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, anon_sym_COMMA, + ACTIONS(2085), 1, anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [23407] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1977), 22, - anon_sym_extern, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2087), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [23477] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2089), 3, anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + sym_identifier, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22068] = 21, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2091), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(712), 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, + [23525] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - STATE(562), 1, + ACTIONS(2093), 1, + anon_sym_RPAREN, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(1969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + [23597] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2095), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2043), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [22141] = 22, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [23669] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2037), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2045), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2097), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - STATE(1182), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(1969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + [23741] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2099), 1, + anon_sym_RPAREN, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22216] = 3, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [23813] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2047), 22, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2101), 3, anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [22253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2051), 28, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(45), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 28, - 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(43), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22327] = 21, + ACTIONS(2103), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(640), 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, + [23861] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2059), 1, + ACTIONS(2105), 1, anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22399] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [23933] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2061), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2107), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22471] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24005] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2063), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2109), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22543] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24077] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2065), 1, + ACTIONS(2111), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22615] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24149] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2067), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2113), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22687] = 20, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24221] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - STATE(562), 1, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2115), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2069), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [22757] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24293] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2071), 1, - anon_sym_SEMI, - STATE(562), 1, + ACTIONS(2117), 1, + anon_sym_RPAREN, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [22829] = 20, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24365] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - STATE(562), 1, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2119), 1, + anon_sym_RPAREN, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2073), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [22899] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2075), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2077), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(643), 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, - [22947] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2079), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2081), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(699), 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, - [22995] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24437] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2121), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23067] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2085), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2087), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(643), 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, - [23115] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(862), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2089), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(2091), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(702), 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, - [23163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1643), 26, - 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23199] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24509] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2093), 1, + ACTIONS(2123), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23271] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24581] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2095), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23343] = 20, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2125), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [24651] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - STATE(562), 1, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2127), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [23413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1645), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1647), 26, - 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23449] = 21, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24723] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2099), 1, + ACTIONS(2129), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23521] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24795] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2101), 1, + ACTIONS(2131), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23593] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24867] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2103), 1, + ACTIONS(2133), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23665] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [24939] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2105), 1, - anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23737] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2135), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [25009] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2107), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2137), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23809] = 20, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1645), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1647), 26, + 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25117] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - STATE(562), 1, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2139), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2109), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [23879] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25189] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2111), 1, + ACTIONS(2141), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [23951] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25261] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2113), 1, + ACTIONS(2143), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24023] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25333] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2115), 1, - anon_sym_SEMI, - STATE(562), 1, + ACTIONS(2145), 1, + anon_sym_RPAREN, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24095] = 20, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25405] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - STATE(562), 1, + ACTIONS(2051), 1, + anon_sym_COMMA, + ACTIONS(2147), 1, + anon_sym_RPAREN, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2117), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [24165] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25477] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2119), 1, + ACTIONS(2149), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24237] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25549] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2121), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2151), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24309] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25621] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2123), 1, + ACTIONS(2153), 1, anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24381] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25693] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2125), 1, + ACTIONS(2155), 1, anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24453] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25765] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2127), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2157), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24525] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [25837] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2129), 1, + ACTIONS(2159), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(1969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + [25909] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24597] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25979] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2163), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2165), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(750), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [26027] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2131), 1, + ACTIONS(2167), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24669] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26099] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2133), 1, + ACTIONS(2169), 1, anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24741] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26171] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2135), 1, + ACTIONS(2171), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24813] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26243] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2173), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24885] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26315] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2139), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2175), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24957] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26387] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - ACTIONS(2141), 1, + ACTIONS(2177), 1, anon_sym_RPAREN, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25029] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26459] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(862), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2179), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(2181), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(640), 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, + [26507] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2143), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25101] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [26577] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2185), 1, + anon_sym_COLON, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25173] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26646] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1753), 1, + anon_sym_RBRACK, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2147), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25245] = 21, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26715] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2149), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1879), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1877), 9, + 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, - [25317] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [26768] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1735), 1, + anon_sym_RBRACK, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2151), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25389] = 21, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26837] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2153), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2213), 1, + anon_sym_COLON, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25461] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [26906] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2155), 1, - anon_sym_SEMI, - STATE(562), 1, + ACTIONS(2215), 1, + anon_sym_RBRACK, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25533] = 21, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26975] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2217), 1, + sym_identifier, + ACTIONS(2226), 1, + sym_primitive_type, + STATE(818), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2224), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2220), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2222), 13, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + [27018] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2157), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2228), 1, + anon_sym_COLON, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25605] = 21, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [27087] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_COMMA, - ACTIONS(2159), 1, - anon_sym_RPAREN, - STATE(562), 1, + ACTIONS(2230), 1, + anon_sym_COLON, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25677] = 3, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [27156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, + ACTIONS(1995), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2033), 26, + anon_sym_RBRACE, + ACTIONS(1993), 25, 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, @@ -59920,18 +60988,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25712] = 3, + [27191] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 1, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE, + ACTIONS(1965), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_AMP, + ACTIONS(1971), 1, + anon_sym_QMARK, + ACTIONS(2232), 1, + anon_sym_COLON, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [27260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1068), 26, - 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, + STATE(435), 1, + sym_string_literal, + ACTIONS(2234), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2043), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -59952,15 +61071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25747] = 3, + [27299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 2, + ACTIONS(1050), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1044), 25, + ACTIONS(1048), 26, 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, @@ -59984,15 +61103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25782] = 3, + [27334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1078), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1068), 25, + ACTIONS(1076), 26, 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, @@ -60016,20 +61135,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25817] = 5, + [27369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, + ACTIONS(1090), 1, anon_sym_LBRACK_LBRACK, - STATE(437), 1, - sym_string_literal, - ACTIONS(2161), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2047), 20, + ACTIONS(1088), 26, + 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_extern, anon_sym___attribute__, anon_sym___declspec, @@ -60050,15 +61167,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25856] = 3, + [27404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 2, + ACTIONS(1070), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1112), 25, + ACTIONS(1068), 26, 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, @@ -60082,113 +61199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25891] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_CARET, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2187), 1, - anon_sym_RBRACK, - ACTIONS(2189), 1, - anon_sym_QMARK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25960] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1747), 1, - anon_sym_RBRACK, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_CARET, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_QMARK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26029] = 3, + [27439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2003), 2, + ACTIONS(1058), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2001), 25, + ACTIONS(1056), 26, 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, @@ -60212,15 +61231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26064] = 3, + [27474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 2, + ACTIONS(1054), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1993), 25, + ACTIONS(1052), 26, 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, @@ -60244,13 +61263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26099] = 3, + [27509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 2, + ACTIONS(1991), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1997), 25, + ACTIONS(1989), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60276,113 +61295,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26134] = 20, + [27544] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, - anon_sym_RBRACK, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, + ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(2177), 1, + ACTIONS(1967), 1, anon_sym_AMP, - ACTIONS(2189), 1, + ACTIONS(1971), 1, anon_sym_QMARK, - STATE(562), 1, + ACTIONS(2236), 1, + anon_sym_SEMI, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2163), 2, + ACTIONS(1947), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(1949), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, + ACTIONS(1953), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2183), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 2, + ACTIONS(1957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [26203] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_CARET, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_QMARK, - ACTIONS(2191), 1, - anon_sym_RBRACK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, + ACTIONS(1969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26272] = 3, + [27613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2003), 1, + ACTIONS(1058), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2001), 26, + anon_sym_RBRACE, + ACTIONS(1056), 25, 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, @@ -60406,514 +61376,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [26307] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - anon_sym_COLON, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26376] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2195), 1, - anon_sym_COLON, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26445] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1821), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1819), 11, - 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, - [26496] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1821), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1819), 9, - 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, - [26549] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1821), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1819), 7, - 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, - [26606] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_RBRACK, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_CARET, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_QMARK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26675] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1821), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1819), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [26734] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1821), 1, - anon_sym_PIPE, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - ACTIONS(2177), 1, - anon_sym_AMP, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1819), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [26795] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1821), 1, - anon_sym_PIPE, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - ACTIONS(2175), 1, - anon_sym_CARET, - ACTIONS(2177), 1, - anon_sym_AMP, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1819), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [26858] = 17, + [27648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_CARET, - ACTIONS(2177), 1, - anon_sym_AMP, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1819), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [26921] = 20, + ACTIONS(2029), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2027), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2197), 1, - anon_sym_SEMI, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26990] = 3, + ACTIONS(2037), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2035), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 2, + ACTIONS(2003), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2009), 25, + ACTIONS(2001), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2041), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2039), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -60939,99 +61504,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27025] = 18, + [27788] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1747), 1, + anon_sym_RBRACK, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(2171), 1, + ACTIONS(2193), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(2177), 1, + ACTIONS(2201), 1, anon_sym_AMP, - STATE(562), 1, + ACTIONS(2211), 1, + anon_sym_QMARK, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2163), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1819), 3, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [27090] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1821), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1819), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [27139] = 3, + [27857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 2, + ACTIONS(2049), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2017), 25, + ACTIONS(2047), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -61057,13 +61585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27174] = 3, + [27892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 2, + ACTIONS(1070), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2055), 25, + ACTIONS(1068), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -61089,305 +61617,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27209] = 20, + [27927] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(1745), 1, anon_sym_RBRACK, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(2177), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(2189), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2163), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2183), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 2, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27278] = 20, + [27996] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1743), 1, + anon_sym_RBRACK, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - ACTIONS(2199), 1, - anon_sym_COLON, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27347] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2201), 1, - anon_sym_SEMI, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27416] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2203), 1, - anon_sym_SEMI, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27485] = 20, + [28065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2027), 26, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28100] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(1739), 1, anon_sym_RBRACK, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(2177), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(2189), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2163), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2183), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 2, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27554] = 19, + [28169] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym_LBRACK_LBRACK, + STATE(439), 1, + sym_string_literal, + ACTIONS(2234), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2043), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2011), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2009), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2033), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2031), 25, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym_LBRACK_LBRACK, + STATE(437), 1, + sym_string_literal, + ACTIONS(2234), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2043), 20, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28317] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, + ACTIONS(1859), 1, + anon_sym_RBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(2177), 1, + ACTIONS(2201), 1, anon_sym_AMP, - STATE(562), 1, + ACTIONS(2211), 1, + anon_sym_QMARK, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1831), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(2163), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2183), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 2, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [27621] = 3, + [28386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2025), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2017), 26, + ACTIONS(2023), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61414,12 +62009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27656] = 3, + [28421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, + ACTIONS(2021), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2013), 26, + ACTIONS(2019), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61446,15 +62041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27691] = 3, + [28456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 2, + ACTIONS(2015), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2051), 25, + ACTIONS(2013), 26, 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, @@ -61478,64 +62073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27726] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_COLON, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27795] = 3, + [28491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1991), 1, + ACTIONS(1090), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1989), 26, + anon_sym_RBRACE, + ACTIONS(1088), 25, 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, @@ -61559,12 +62105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27830] = 3, + [28526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(2011), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2021), 26, + ACTIONS(2009), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61591,13 +62137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27865] = 3, + [28561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1078), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2013), 25, + ACTIONS(1076), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -61623,12 +62169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27900] = 3, + [28596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 1, + ACTIONS(2007), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1993), 26, + ACTIONS(2005), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61655,100 +62201,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27935] = 20, + [28631] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1729), 1, anon_sym_RBRACK, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(2177), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(2189), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2163), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2183), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 2, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28004] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - sym_identifier, - ACTIONS(2216), 1, - sym_primitive_type, - STATE(830), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2214), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2210), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2212), 13, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - [28047] = 3, + [28700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 1, + ACTIONS(1054), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1997), 26, + anon_sym_RBRACE, + ACTIONS(1052), 25, 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, @@ -61772,110 +62282,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28082] = 20, + [28735] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2218), 1, - anon_sym_COLON, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(1813), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28151] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2220), 1, - anon_sym_COLON, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28220] = 3, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, + ACTIONS(1995), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1985), 26, + ACTIONS(1993), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61902,12 +62362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28255] = 3, + [28837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 1, + ACTIONS(1991), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2025), 26, + ACTIONS(1989), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -61934,606 +62394,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28290] = 20, + [28872] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2222), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(1857), 6, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1855), 11, + 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, - [28359] = 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [28921] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2224), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2011), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2009), 26, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28463] = 20, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1855), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [28986] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1751), 1, anon_sym_RBRACK, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(2177), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(2189), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2163), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2183), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 2, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28532] = 20, + [29055] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - ACTIONS(2226), 1, - anon_sym_SEMI, - STATE(562), 1, + ACTIONS(2238), 1, + anon_sym_RBRACK, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28601] = 20, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29124] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1725), 1, - anon_sym_RBRACK, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(2177), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_QMARK, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2163), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2183), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 2, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2055), 26, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2051), 26, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28740] = 20, + ACTIONS(1855), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [29187] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1857), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, + anon_sym_SLASH, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2228), 1, - anon_sym_COLON, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28809] = 20, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1855), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [29250] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_RBRACK, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, + ACTIONS(1857), 1, + anon_sym_PIPE, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_CARET, - ACTIONS(2177), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_QMARK, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2163), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 2, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2181), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2183), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 2, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [28878] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2049), 1, - anon_sym_LBRACK_LBRACK, - STATE(438), 1, - sym_string_literal, - ACTIONS(2161), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2047), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1042), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1040), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1116), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28987] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1855), 5, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(2230), 1, - anon_sym_SEMI, - STATE(562), 1, + [29311] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, + anon_sym_SLASH, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(1857), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29056] = 5, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1855), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [29370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, + ACTIONS(1050), 2, anon_sym_LBRACK_LBRACK, - STATE(435), 1, - sym_string_literal, - ACTIONS(2161), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2047), 20, + anon_sym_RBRACE, + ACTIONS(1048), 25, + 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_extern, anon_sym___attribute__, anon_sym___declspec, @@ -62554,62 +62791,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29095] = 20, + [29405] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2232), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(1857), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29164] = 3, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1855), 7, + 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, + [29462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 2, + ACTIONS(2025), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1080), 25, + ACTIONS(2023), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -62635,61 +62866,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29199] = 20, + [29497] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1755), 1, + anon_sym_RBRACK, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - ACTIONS(2234), 1, - anon_sym_COLON, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29268] = 3, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1082), 1, + ACTIONS(2003), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1080), 26, + ACTIONS(2001), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62716,15 +62947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29303] = 3, + [29601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(2007), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1116), 26, + anon_sym_RBRACE, + ACTIONS(2005), 25, 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, @@ -62748,18 +62979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29338] = 3, + [29636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1042), 1, + ACTIONS(2045), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1040), 26, - 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, + STATE(438), 1, + sym_string_literal, + ACTIONS(2234), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2043), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -62780,12 +63013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29373] = 3, + [29675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 1, + ACTIONS(2033), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1044), 26, + ACTIONS(2031), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -62812,162 +63045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29408] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1723), 1, - anon_sym_RBRACK, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_CARET, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_QMARK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29477] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1735), 1, - anon_sym_RBRACK, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_LPAREN2, - ACTIONS(2167), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_CARET, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_QMARK, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2163), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2183), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29546] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_SLASH, - ACTIONS(1955), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, - anon_sym_AMP_AMP, - ACTIONS(1959), 1, - anon_sym_PIPE, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1963), 1, - anon_sym_AMP, - ACTIONS(1971), 1, - anon_sym_QMARK, - ACTIONS(2236), 1, - anon_sym_SEMI, - STATE(562), 1, - sym_argument_list, - ACTIONS(1789), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1969), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29615] = 3, + [29710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 1, + ACTIONS(1999), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1112), 26, + anon_sym_RBRACE, + ACTIONS(1997), 25, 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, @@ -62991,21 +63077,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29650] = 3, + [29745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 2, + STATE(818), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2242), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2033), 25, - 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_COLON, + ACTIONS(2240), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -63014,24 +63109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29685] = 3, + [29784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 2, + ACTIONS(2049), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1985), 25, + ACTIONS(2047), 26, 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, @@ -63055,38 +63143,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29720] = 12, + [29819] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, ACTIONS(1881), 1, anon_sym_LPAREN2, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_SLASH, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2163), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2165), 2, + ACTIONS(2189), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2185), 2, + ACTIONS(2209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 4, + ACTIONS(1857), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1867), 9, + ACTIONS(1855), 9, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -63096,15 +63184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [29773] = 3, + [29872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1991), 2, + ACTIONS(2041), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1989), 25, + ACTIONS(2039), 26, 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, @@ -63128,13 +63216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29808] = 3, + [29907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 2, + ACTIONS(2021), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2021), 25, + ACTIONS(2019), 25, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -63160,12 +63248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29843] = 3, + [29942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, + ACTIONS(2037), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2029), 26, + ACTIONS(2035), 26, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -63192,277 +63280,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29878] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2049), 1, - anon_sym_LBRACK_LBRACK, - STATE(436), 1, - sym_string_literal, - ACTIONS(2161), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2047), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [29917] = 20, + [29977] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2238), 1, - anon_sym_SEMI, - STATE(562), 1, + ACTIONS(2247), 1, + anon_sym_COLON, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1955), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(1969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + [30046] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1763), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, + anon_sym_SLASH, + STATE(546), 1, + sym_argument_list, + ACTIONS(1765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1767), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2187), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1857), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1855), 11, + 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, - [29986] = 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [30097] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1737), 1, + anon_sym_RBRACK, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1881), 1, + anon_sym_LPAREN2, + ACTIONS(2191), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(2193), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(2195), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(2197), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(2199), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(2201), 1, anon_sym_AMP, - ACTIONS(1971), 1, + ACTIONS(2211), 1, anon_sym_QMARK, - ACTIONS(2240), 1, - anon_sym_SEMI, - STATE(562), 1, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, + ACTIONS(2187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, + ACTIONS(2189), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2203), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(2207), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30055] = 20, + ACTIONS(2209), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30166] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2242), 1, - anon_sym_SEMI, - STATE(562), 1, + ACTIONS(2249), 1, + anon_sym_COLON, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2025), 25, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30159] = 20, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [30235] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1763), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_SLASH, - ACTIONS(1955), 1, + ACTIONS(1959), 1, anon_sym_PIPE_PIPE, - ACTIONS(1957), 1, + ACTIONS(1961), 1, anon_sym_AMP_AMP, - ACTIONS(1959), 1, + ACTIONS(1963), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1965), 1, anon_sym_CARET, - ACTIONS(1963), 1, + ACTIONS(1967), 1, anon_sym_AMP, ACTIONS(1971), 1, anon_sym_QMARK, - ACTIONS(2244), 1, - anon_sym_SEMI, - STATE(562), 1, + ACTIONS(2251), 1, + anon_sym_COLON, + STATE(546), 1, sym_argument_list, - ACTIONS(1789), 2, + ACTIONS(1765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1791), 2, + ACTIONS(1767), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(1947), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1969), 2, + ACTIONS(1955), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30228] = 3, + ACTIONS(1957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [30304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 2, + ACTIONS(1999), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2029), 25, + ACTIONS(1997), 26, 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, @@ -63486,30 +63548,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30263] = 5, + [30339] = 3, ACTIONS(3), 1, sym_comment, - STATE(830), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2250), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2248), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2015), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2246), 15, + anon_sym_RBRACE, + ACTIONS(2013), 25, + 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_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -63518,9 +63571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30302] = 15, + [30374] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1387), 1, @@ -63533,18 +63593,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1938), 1, anon_sym_LBRACK, - STATE(1027), 1, + STATE(1020), 1, sym__declarator, - STATE(1114), 1, + STATE(1107), 1, sym__abstract_declarator, - STATE(1142), 1, + STATE(1141), 1, sym_parameter_list, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, ACTIONS(2253), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -63552,18 +63612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1143), 4, + STATE(1142), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [30360] = 14, + [30432] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, @@ -63574,19 +63634,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2259), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1067), 1, + STATE(1048), 1, + sym__field_declarator, + STATE(1328), 1, + sym_ms_based_modifier, + ACTIONS(1936), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(984), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(992), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1934), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(1085), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [30487] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(2261), 1, + sym_identifier, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_STAR, + STATE(998), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1061), 1, sym__type_declarator, - STATE(1380), 1, + STATE(1386), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(843), 2, + STATE(836), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(983), 2, + STATE(978), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1934), 3, @@ -63604,32 +63705,32 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [30415] = 14, + [30542] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1930), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1027), 1, - sym__declarator, - STATE(1398), 1, + STATE(1044), 1, + sym__field_declarator, + STATE(1328), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(984), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(990), 2, + STATE(842), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, + STATE(981), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -63639,36 +63740,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1073), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [30470] = 14, + STATE(1085), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [30597] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1930), 1, - sym_identifier, ACTIONS(2261), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1027), 1, - sym__declarator, - STATE(1398), 1, + STATE(1070), 1, + sym__type_declarator, + STATE(1386), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(842), 2, + STATE(840), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(984), 2, + STATE(980), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1934), 3, @@ -63680,36 +63781,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1073), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [30525] = 14, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [30652] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(2261), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1046), 1, - sym__field_declarator, - STATE(1326), 1, + STATE(1070), 1, + sym__type_declarator, + STATE(1386), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(985), 2, + STATE(980), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(990), 2, + STATE(992), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, ACTIONS(1934), 3, @@ -63721,79 +63822,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1087), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [30580] = 14, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [30707] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(1930), 1, sym_identifier, ACTIONS(2267), 1, anon_sym_LPAREN2, ACTIONS(2269), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1052), 1, - sym__field_declarator, - STATE(1326), 1, + STATE(1020), 1, + sym__declarator, + STATE(1407), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(839), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(982), 2, + STATE(983), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1934), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(1087), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [30635] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1391), 1, - anon_sym___based, - ACTIONS(2265), 1, - sym_identifier, - ACTIONS(2267), 1, - anon_sym_LPAREN2, - ACTIONS(2269), 1, - anon_sym_STAR, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1042), 1, - sym__field_declarator, - STATE(1326), 1, - sym_ms_based_modifier, - ACTIONS(1936), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(835), 2, + STATE(992), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(979), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -63803,36 +63863,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1087), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [30690] = 14, + STATE(1075), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [30762] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1024), 1, + STATE(1020), 1, sym__declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(833), 2, + STATE(841), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(986), 2, + STATE(983), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1934), 3, @@ -63844,38 +63904,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [30745] = 14, + [30817] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(1930), 1, sym_identifier, ACTIONS(2267), 1, anon_sym_LPAREN2, ACTIONS(2269), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1042), 1, - sym__field_declarator, - STATE(1326), 1, + STATE(1017), 1, + sym__declarator, + STATE(1407), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, + STATE(837), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, STATE(979), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(990), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -63885,36 +63945,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1087), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [30800] = 14, + STATE(1075), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [30872] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2255), 1, + ACTIONS(2261), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1058), 1, + STATE(1059), 1, sym__type_declarator, - STATE(1380), 1, + STATE(1386), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(978), 2, + STATE(986), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(990), 2, + STATE(992), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, ACTIONS(1934), 3, @@ -63932,32 +63992,32 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [30855] = 14, + [30927] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2255), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2259), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1069), 1, - sym__type_declarator, - STATE(1380), 1, + STATE(1015), 1, + sym__declarator, + STATE(1407), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(840), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(980), 2, + STATE(985), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, + STATE(992), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -63967,36 +64027,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1098), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [30910] = 14, + STATE(1075), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [30982] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1930), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1038), 1, - sym__declarator, - STATE(1398), 1, + STATE(1052), 1, + sym__field_declarator, + STATE(1328), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(990), 2, + STATE(992), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, ACTIONS(1934), 3, @@ -64008,13 +64068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1073), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [30965] = 14, + STATE(1085), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [31037] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, @@ -64025,21 +64085,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2259), 1, anon_sym_STAR, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - STATE(1069), 1, - sym__type_declarator, - STATE(1380), 1, + STATE(1052), 1, + sym__field_declarator, + STATE(1328), 1, sym_ms_based_modifier, ACTIONS(1936), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(980), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(990), 2, + STATE(832), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, + STATE(982), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, ACTIONS(1934), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -64049,13 +64109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1098), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [31020] = 10, + STATE(1085), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [31092] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64083,7 +64143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(702), 7, + STATE(712), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64091,7 +64151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [31066] = 10, + [31138] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64119,7 +64179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(702), 7, + STATE(712), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64127,7 +64187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [31112] = 10, + [31184] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64155,7 +64215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(702), 7, + STATE(712), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64163,7 +64223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [31158] = 10, + [31230] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -64191,7 +64251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(702), 7, + STATE(712), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64199,13 +64259,13 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [31204] = 5, + [31276] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2283), 1, anon_sym_LBRACE, - STATE(881), 1, - sym_enumerator_list, + STATE(871), 1, + sym_field_declaration_list, ACTIONS(2281), 7, anon_sym_COMMA, anon_sym_RPAREN, @@ -64229,13 +64289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31239] = 5, + [31311] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2289), 1, anon_sym_LBRACE, - STATE(886), 1, - sym_field_declaration_list, + STATE(887), 1, + sym_enumerator_list, ACTIONS(2287), 7, anon_sym_COMMA, anon_sym_RPAREN, @@ -64259,50 +64319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31274] = 13, - ACTIONS(3), 1, - sym_comment, - 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(1395), 1, - sym_identifier, - STATE(987), 1, - sym__type_specifier, - STATE(994), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym_type_descriptor, - STATE(855), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(882), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - [31325] = 5, + [31346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(2283), 1, anon_sym_LBRACE, - STATE(876), 1, + STATE(865), 1, sym_field_declaration_list, ACTIONS(2293), 7, anon_sym_COMMA, @@ -64327,12 +64349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31360] = 5, + [31381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(2283), 1, anon_sym_LBRACE, - STATE(891), 1, + STATE(886), 1, sym_field_declaration_list, ACTIONS(2297), 7, anon_sym_COMMA, @@ -64357,12 +64379,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31395] = 5, + [31416] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, + 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(1395), 1, + sym_identifier, + STATE(988), 1, + sym__type_specifier, + STATE(994), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1364), 1, + sym_type_descriptor, + STATE(857), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1345), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(884), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + [31467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 1, anon_sym_LBRACE, - STATE(873), 1, + STATE(870), 1, sym_field_declaration_list, ACTIONS(2301), 7, anon_sym_COMMA, @@ -64387,7 +64447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31430] = 12, + [31502] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64400,11 +64460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1395), 1, sym_identifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1034), 1, + STATE(1022), 1, sym__type_specifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64417,13 +64477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31478] = 12, + [31550] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64436,11 +64496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1395), 1, sym_identifier, - STATE(992), 1, - sym__type_specifier, - STATE(994), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(874), 2, + STATE(1023), 1, + sym__type_specifier, + STATE(858), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64448,47 +64508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(1345), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31526] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2305), 1, - anon_sym_LPAREN2, - STATE(928), 1, - sym_preproc_argument_list, - ACTIONS(2307), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2303), 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, - [31560] = 12, + [31598] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64501,11 +64532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1395), 1, sym_identifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1020), 1, + STATE(1026), 1, sym__type_specifier, - STATE(863), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64518,13 +64549,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31608] = 12, + [31646] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64537,11 +64568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1395), 1, sym_identifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1018), 1, + STATE(987), 1, sym__type_specifier, - STATE(874), 2, + STATE(994), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64549,18 +64580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(47), 4, + ACTIONS(1345), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31656] = 12, + [31694] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64573,11 +64604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1395), 1, sym_identifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1023), 1, + STATE(1037), 1, sym__type_specifier, - STATE(854), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64590,13 +64621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31704] = 12, + [31742] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64609,11 +64640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1395), 1, sym_identifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1031), 1, + STATE(1021), 1, sym__type_specifier, - STATE(858), 2, + STATE(860), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64626,13 +64657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31752] = 12, + [31790] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64645,11 +64676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1395), 1, sym_identifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1013), 1, + STATE(1035), 1, sym__type_specifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64662,13 +64693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31800] = 12, + [31838] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64681,11 +64712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1395), 1, sym_identifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1037), 1, + STATE(1034), 1, sym__type_specifier, - STATE(861), 2, + STATE(854), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64698,13 +64729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31848] = 12, + [31886] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -64717,11 +64748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1395), 1, sym_identifier, - STATE(785), 1, + STATE(758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1039), 1, + STATE(1027), 1, sym__type_specifier, - STATE(874), 2, + STATE(856), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -64734,43 +64765,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(882), 5, + STATE(884), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - [31896] = 4, + [31934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(2305), 1, anon_sym_LPAREN2, - ACTIONS(1453), 6, + STATE(895), 1, + sym_preproc_argument_list, + ACTIONS(2307), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2303), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1437), 14, - 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [31927] = 3, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 7, + ACTIONS(2311), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64778,7 +64811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2312), 14, + ACTIONS(2309), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64793,38 +64826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [31956] = 5, - ACTIONS(2303), 1, - anon_sym_LF, - ACTIONS(2316), 1, - anon_sym_LPAREN2, - ACTIONS(2318), 1, - sym_comment, - STATE(968), 1, - sym_preproc_argument_list, - ACTIONS(2307), 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, - [31989] = 3, + [31997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 7, + ACTIONS(2315), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64832,7 +64837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2320), 14, + ACTIONS(2313), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64847,10 +64852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32018] = 3, + [32026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 7, + ACTIONS(2319), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64858,7 +64863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2324), 14, + ACTIONS(2317), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64873,10 +64878,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32047] = 3, + [32055] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2321), 1, + anon_sym_COMMA, + ACTIONS(2323), 1, + anon_sym_RPAREN, + ACTIONS(2329), 1, + anon_sym_SLASH, + ACTIONS(2331), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2333), 1, + anon_sym_AMP_AMP, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2337), 1, + anon_sym_CARET, + ACTIONS(2339), 1, + anon_sym_AMP, + STATE(1181), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2325), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2345), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 7, + ACTIONS(2351), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64884,7 +64928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2328), 14, + ACTIONS(2349), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64899,10 +64943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32076] = 3, + [32139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 7, + ACTIONS(2355), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64910,7 +64954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2332), 14, + ACTIONS(2353), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64925,43 +64969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32105] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - sym_identifier, - ACTIONS(2338), 1, - anon_sym_RPAREN, - ACTIONS(2340), 1, - anon_sym_LPAREN2, - ACTIONS(2342), 1, - anon_sym_defined, - ACTIONS(2348), 1, - sym_number_literal, - ACTIONS(2344), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2346), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2350), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(878), 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, - [32148] = 3, + [32168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 7, + ACTIONS(2359), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64969,7 +64980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2352), 14, + ACTIONS(2357), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64984,10 +64995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32177] = 3, + [32197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2358), 7, + ACTIONS(2363), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64995,7 +65006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2356), 14, + ACTIONS(2361), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65010,77 +65021,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32206] = 5, + [32226] = 16, ACTIONS(3), 1, sym_comment, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2360), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - ACTIONS(1942), 5, + ACTIONS(2321), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(1940), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32239] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2363), 1, - anon_sym_COMMA, - ACTIONS(2365), 1, - anon_sym_RPAREN, - ACTIONS(2371), 1, + ACTIONS(2329), 1, anon_sym_SLASH, - ACTIONS(2373), 1, + ACTIONS(2331), 1, anon_sym_PIPE_PIPE, - ACTIONS(2375), 1, + ACTIONS(2333), 1, anon_sym_AMP_AMP, - ACTIONS(2377), 1, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(2379), 1, + ACTIONS(2337), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2339), 1, anon_sym_AMP, - STATE(1181), 1, + ACTIONS(2365), 1, + anon_sym_RPAREN, + STATE(1166), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(2367), 2, + ACTIONS(2325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2369), 2, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2383), 2, + ACTIONS(2341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2343), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2347), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32294] = 3, + [32281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 7, + ACTIONS(2369), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65088,7 +65071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2391), 14, + ACTIONS(2367), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65103,10 +65086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32323] = 3, + [32310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 7, + ACTIONS(2373), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65114,7 +65097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2395), 14, + ACTIONS(2371), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65129,49 +65112,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32352] = 16, + [32339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 1, + ACTIONS(2377), 7, anon_sym_COMMA, - ACTIONS(2371), 1, - anon_sym_SLASH, - ACTIONS(2373), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2375), 1, - anon_sym_AMP_AMP, - ACTIONS(2377), 1, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2375), 14, + 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_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [32368] = 10, + ACTIONS(3), 1, + sym_comment, ACTIONS(2379), 1, - anon_sym_CARET, + sym_identifier, ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2399), 1, anon_sym_RPAREN, - STATE(1155), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2367), 2, + ACTIONS(2383), 1, + anon_sym_LPAREN2, + ACTIONS(2385), 1, + anon_sym_defined, + ACTIONS(2391), 1, + sym_number_literal, + ACTIONS(2387), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2393), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(872), 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, + [32411] = 5, + ACTIONS(2303), 1, + anon_sym_LF, + ACTIONS(2395), 1, + anon_sym_LPAREN2, + ACTIONS(2397), 1, + sym_comment, + STATE(962), 1, + sym_preproc_argument_list, + ACTIONS(2307), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2369), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2383), 2, + 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, - ACTIONS(2385), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(2387), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [32407] = 3, + [32444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 7, + ACTIONS(2401), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65179,7 +65210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2401), 14, + ACTIONS(2399), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65194,23 +65225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32436] = 3, + [32473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2405), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2405), 14, + ACTIONS(2403), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -65219,19 +65242,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [32465] = 3, + [32502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 7, + ACTIONS(2407), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2409), 14, + ACTIONS(1437), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65246,10 +65278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32494] = 3, + [32533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 7, + ACTIONS(2412), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65257,7 +65289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2413), 14, + ACTIONS(2410), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65272,7 +65304,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32523] = 3, + [32562] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(882), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2414), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + ACTIONS(1942), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(1940), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32595] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2419), 7, @@ -65298,69 +65358,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32552] = 3, + [32624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 1, + ACTIONS(2423), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2421), 20, + anon_sym_COLON, + ACTIONS(2421), 14, 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_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32581] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - sym_identifier, - ACTIONS(2340), 1, - anon_sym_LPAREN2, - ACTIONS(2342), 1, - anon_sym_defined, - ACTIONS(2425), 1, - anon_sym_RPAREN, - ACTIONS(2427), 1, - sym_number_literal, - ACTIONS(2344), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2346), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2350), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(875), 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, - [32624] = 3, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [32653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2431), 7, + ACTIONS(2427), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65368,7 +65395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2429), 14, + ACTIONS(2425), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65383,10 +65410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32653] = 3, + [32682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2435), 7, + ACTIONS(2431), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65394,7 +65421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2433), 14, + ACTIONS(2429), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65409,10 +65436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32682] = 3, + [32711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 7, + ACTIONS(2435), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -65420,7 +65447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2437), 14, + ACTIONS(2433), 14, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65435,7 +65462,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32711] = 3, + [32740] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 1, + sym_identifier, + ACTIONS(2383), 1, + anon_sym_LPAREN2, + ACTIONS(2385), 1, + anon_sym_defined, + ACTIONS(2437), 1, + anon_sym_RPAREN, + ACTIONS(2439), 1, + sym_number_literal, + ACTIONS(2387), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2393), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(867), 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, + [32783] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2443), 7, @@ -65461,7 +65521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32740] = 3, + [32812] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2447), 7, @@ -65487,7 +65547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32769] = 3, + [32841] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2451), 7, @@ -65513,30 +65573,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [32798] = 9, + [32870] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2455), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2453), 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, + [32904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2455), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2453), 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, + [32932] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2461), 1, anon_sym_defined, - ACTIONS(2453), 1, + ACTIONS(2467), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(932), 7, + STATE(954), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65544,16 +65657,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [32838] = 3, + [32972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 5, + ACTIONS(2473), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1871), 15, + ACTIONS(2471), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -65569,214 +65682,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [32866] = 9, + [33000] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(2329), 1, anon_sym_SLASH, - ACTIONS(2367), 2, + ACTIONS(2333), 1, + anon_sym_AMP_AMP, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2337), 1, + anon_sym_CARET, + ACTIONS(2339), 1, + anon_sym_AMP, + ACTIONS(2325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2369), 2, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2385), 2, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2343), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2347), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2457), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2455), 7, + ACTIONS(2453), 3, 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, - [32906] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - sym_identifier, - ACTIONS(2340), 1, - anon_sym_LPAREN2, - ACTIONS(2342), 1, - anon_sym_defined, - ACTIONS(2459), 1, - sym_number_literal, - ACTIONS(2344), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2346), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2350), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(898), 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, - [32946] = 13, + [33048] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(2329), 1, anon_sym_SLASH, - ACTIONS(2375), 1, - anon_sym_AMP_AMP, - ACTIONS(2377), 1, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(2379), 1, + ACTIONS(2337), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2339), 1, anon_sym_AMP, - ACTIONS(2367), 2, + ACTIONS(2325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2369), 2, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2383), 2, + ACTIONS(2341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2343), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2347), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2455), 3, + ACTIONS(2453), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [32994] = 9, + anon_sym_AMP_AMP, + [33094] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, - sym_identifier, - ACTIONS(2340), 1, - anon_sym_LPAREN2, - ACTIONS(2342), 1, - anon_sym_defined, - ACTIONS(2461), 1, - sym_number_literal, - ACTIONS(2344), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2329), 1, + anon_sym_SLASH, + ACTIONS(2337), 1, + anon_sym_CARET, + ACTIONS(2339), 1, + anon_sym_AMP, + ACTIONS(2455), 1, + anon_sym_PIPE, + ACTIONS(2325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(896), 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, - [33034] = 3, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2345), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2453), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [33140] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 5, + ACTIONS(2329), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_AMP, + ACTIONS(2455), 1, + anon_sym_PIPE, + ACTIONS(2325), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2343), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2455), 15, + ACTIONS(2345), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2453), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [33184] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2347), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [33062] = 9, + ACTIONS(2455), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2453), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [33226] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - sym_identifier, - ACTIONS(2465), 1, - anon_sym_LPAREN2, - ACTIONS(2467), 1, - anon_sym_defined, - ACTIONS(2473), 1, - sym_number_literal, - ACTIONS(2469), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2329), 1, + anon_sym_SLASH, + ACTIONS(2325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(957), 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, - [33102] = 9, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2345), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2455), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2453), 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, + [33266] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2385), 1, anon_sym_defined, - ACTIONS(2477), 1, + ACTIONS(2475), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(923), 7, + STATE(914), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65784,24 +65912,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33142] = 5, + [33306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(2479), 5, anon_sym_SLASH, - ACTIONS(2369), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2457), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2455), 13, + ACTIONS(2477), 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, @@ -65811,26 +65937,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [33174] = 7, + [33334] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(2329), 1, anon_sym_SLASH, - ACTIONS(2367), 2, + ACTIONS(2325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2369), 2, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2389), 2, + ACTIONS(2347), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2457), 4, + ACTIONS(2455), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2455), 9, + ACTIONS(2453), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -65840,44 +65966,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33210] = 6, + [33370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_SLASH, - ACTIONS(2367), 2, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_LPAREN2, + ACTIONS(2461), 1, + anon_sym_defined, + ACTIONS(2481), 1, + sym_number_literal, + ACTIONS(2463), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2369), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2457), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2455), 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, - [33244] = 3, + ACTIONS(2469), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(971), 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, + [33410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 5, + ACTIONS(2485), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2479), 15, + ACTIONS(2483), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -65893,30 +66022,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [33272] = 9, + [33438] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, - ACTIONS(2483), 1, + ACTIONS(2487), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(975), 7, + STATE(970), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65924,61 +66053,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33312] = 9, + [33478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - sym_identifier, - ACTIONS(2465), 1, - anon_sym_LPAREN2, - ACTIONS(2467), 1, - anon_sym_defined, - ACTIONS(2485), 1, - sym_number_literal, - ACTIONS(2469), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(1843), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1841), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(950), 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, - [33352] = 9, + 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, + [33506] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2461), 1, anon_sym_defined, - ACTIONS(2487), 1, + ACTIONS(2489), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(917), 7, + STATE(969), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -65986,55 +66109,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2491), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2489), 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, - [33420] = 9, + [33546] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2461), 1, anon_sym_defined, - ACTIONS(2493), 1, + ACTIONS(2491), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(969), 7, + STATE(951), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66042,30 +66140,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33460] = 9, + [33586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2461), 1, anon_sym_defined, - ACTIONS(2495), 1, + ACTIONS(2493), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(921), 7, + STATE(955), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66073,30 +66171,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33500] = 9, + [33626] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2385), 1, anon_sym_defined, - ACTIONS(2497), 1, + ACTIONS(2495), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(925), 7, + STATE(926), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66104,30 +66202,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33540] = 9, + [33666] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2385), 1, anon_sym_defined, - ACTIONS(2499), 1, + ACTIONS(2497), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(913), 7, + STATE(893), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66135,63 +66233,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33580] = 11, + [33706] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(2329), 1, anon_sym_SLASH, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2457), 1, + ACTIONS(2331), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2333), 1, + anon_sym_AMP_AMP, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(2367), 2, + ACTIONS(2337), 1, + anon_sym_CARET, + ACTIONS(2339), 1, + anon_sym_AMP, + ACTIONS(2325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2369), 2, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2383), 2, + ACTIONS(2341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2343), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2347), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2455), 5, + ACTIONS(2499), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [33624] = 9, + [33756] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2501), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(894), 7, + STATE(960), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66199,30 +66300,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33664] = 9, + [33796] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2385), 1, anon_sym_defined, ACTIONS(2503), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(902), 7, + STATE(961), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66230,30 +66331,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33704] = 9, + [33836] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2385), 1, anon_sym_defined, ACTIONS(2505), 1, sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(903), 7, + STATE(896), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66261,64 +66362,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33744] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_SLASH, - ACTIONS(2377), 1, - anon_sym_PIPE, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2367), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2369), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2455), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [33790] = 9, + [33876] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2507), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(962), 7, + STATE(958), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66326,61 +66393,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33830] = 9, + [33916] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2340), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2509), 1, sym_number_literal, - ACTIONS(2344), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2346), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2350), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(965), 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, - [33870] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - sym_identifier, - ACTIONS(2340), 1, - anon_sym_LPAREN2, - ACTIONS(2342), 1, - anon_sym_defined, - ACTIONS(2511), 1, - sym_number_literal, - ACTIONS(2344), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2346), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(901), 7, + STATE(950), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66388,64 +66424,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [33910] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_SLASH, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2457), 1, - anon_sym_PIPE, - ACTIONS(2367), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2369), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2455), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, [33956] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2385), 1, anon_sym_defined, - ACTIONS(2513), 1, + ACTIONS(2511), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(970), 7, + STATE(897), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66456,13 +66458,13 @@ static const uint16_t ts_small_parse_table[] = { [33996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 5, + ACTIONS(2515), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2515), 15, + ACTIONS(2513), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66481,13 +66483,13 @@ static const uint16_t ts_small_parse_table[] = { [34024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 5, + ACTIONS(2519), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2519), 15, + ACTIONS(2517), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66503,66 +66505,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34052] = 14, + [34052] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_SLASH, - ACTIONS(2373), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2375), 1, - anon_sym_AMP_AMP, - ACTIONS(2377), 1, - anon_sym_PIPE, ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2367), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2369), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_GT, - anon_sym_LT, + sym_identifier, + ACTIONS(2383), 1, + anon_sym_LPAREN2, + ACTIONS(2385), 1, + anon_sym_defined, + ACTIONS(2521), 1, + sym_number_literal, ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(2389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2523), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [34102] = 9, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2393), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(898), 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, + [34092] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, - ACTIONS(2525), 1, + ACTIONS(2523), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(966), 7, + STATE(956), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66570,57 +66567,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34142] = 13, + [34132] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 1, - anon_sym_LPAREN2, - ACTIONS(1389), 1, - anon_sym_STAR, - ACTIONS(1391), 1, - anon_sym___based, - ACTIONS(1930), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(1938), 1, - anon_sym_LBRACK, - STATE(1079), 1, - sym__declarator, - STATE(1113), 1, - sym__abstract_declarator, - STATE(1142), 1, - sym_parameter_list, - STATE(1398), 1, - sym_ms_based_modifier, - ACTIONS(2527), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1143), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1073), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [34190] = 3, + ACTIONS(2383), 1, + anon_sym_LPAREN2, + ACTIONS(2385), 1, + anon_sym_defined, + ACTIONS(2525), 1, + sym_number_literal, + ACTIONS(2387), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2393), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(899), 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, + [34172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 5, + ACTIONS(2329), 1, anon_sym_SLASH, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2455), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2529), 15, + ACTIONS(2453), 13, 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, @@ -66630,55 +66625,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34218] = 3, + [34204] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2533), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2379), 1, + sym_identifier, + ACTIONS(2383), 1, + anon_sym_LPAREN2, + ACTIONS(2385), 1, + anon_sym_defined, + ACTIONS(2527), 1, + sym_number_literal, + ACTIONS(2387), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2389), 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, - [34246] = 9, + ACTIONS(2393), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(900), 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, + [34244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2385), 1, anon_sym_defined, - ACTIONS(2537), 1, + ACTIONS(2529), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(959), 7, + STATE(901), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66686,16 +66687,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34286] = 3, + [34284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2541), 5, + ACTIONS(2533), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2539), 15, + ACTIONS(2531), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -66711,62 +66712,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34314] = 10, + [34312] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_SLASH, - ACTIONS(2367), 2, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_LPAREN2, + ACTIONS(2461), 1, + anon_sym_defined, + ACTIONS(2535), 1, + sym_number_literal, + ACTIONS(2463), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2369), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_GT, - anon_sym_LT, + ACTIONS(2469), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(963), 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, + [34352] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 1, + sym_identifier, + ACTIONS(2383), 1, + anon_sym_LPAREN2, + ACTIONS(2385), 1, + anon_sym_defined, + ACTIONS(2537), 1, + sym_number_literal, ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(2389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2457), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2455), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [34356] = 9, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2393), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(904), 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, + [34392] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2385), 1, anon_sym_defined, - ACTIONS(2543), 1, + ACTIONS(2539), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(958), 7, + STATE(964), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66774,30 +66805,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34396] = 9, + [34432] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2385), 1, anon_sym_defined, - ACTIONS(2545), 1, + ACTIONS(2541), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(956), 7, + STATE(892), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66805,30 +66836,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34436] = 9, + [34472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2545), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 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, + [34500] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2547), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(971), 7, + STATE(967), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66836,30 +66892,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34476] = 9, + [34540] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2379), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2383), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2385), 1, anon_sym_defined, ACTIONS(2549), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2387), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2393), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(961), 7, + STATE(906), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66867,24 +66923,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34516] = 9, + [34580] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2551), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -66898,7 +66954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34556] = 3, + [34620] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2555), 5, @@ -66923,30 +66979,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34584] = 9, + [34648] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2557), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(949), 7, + STATE(975), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66954,30 +67010,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34624] = 9, + [34688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2559), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(973), 7, + STATE(977), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -66985,30 +67041,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34664] = 9, + [34728] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2561), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(955), 7, + STATE(948), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -67016,30 +67072,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34704] = 9, + [34768] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2563), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(972), 7, + STATE(966), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -67047,30 +67103,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34744] = 9, + [34808] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2565), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(967), 7, + STATE(976), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -67078,30 +67134,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34784] = 9, + [34848] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2567), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(964), 7, + STATE(973), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -67109,30 +67165,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34824] = 9, + [34888] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2459), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_defined, ACTIONS(2569), 1, sym_number_literal, - ACTIONS(2469), 2, + ACTIONS(2463), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, + ACTIONS(2469), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(976), 7, + STATE(965), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -67140,76 +67196,196 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34864] = 9, + [34928] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(1387), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_STAR, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2465), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK, + STATE(1082), 1, + sym__declarator, + STATE(1113), 1, + sym__abstract_declarator, + STATE(1141), 1, + sym_parameter_list, + STATE(1407), 1, + sym_ms_based_modifier, + ACTIONS(2571), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1142), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1075), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [34976] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2576), 1, anon_sym_LPAREN2, - ACTIONS(2467), 1, - anon_sym_defined, - ACTIONS(2571), 1, - sym_number_literal, - ACTIONS(2469), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2471), 2, + ACTIONS(2580), 1, + anon_sym_LBRACK, + ACTIONS(1450), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2573), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1437), 13, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + sym_identifier, + [35009] = 11, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(2453), 1, + anon_sym_LF, + ACTIONS(2587), 1, + anon_sym_PIPE, + ACTIONS(2589), 1, + anon_sym_CARET, + ACTIONS(2591), 1, + anon_sym_AMP, + ACTIONS(2455), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2475), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(947), 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, - [34904] = 12, - ACTIONS(2318), 1, + ACTIONS(2593), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2597), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2585), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [35052] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2573), 1, + ACTIONS(2531), 1, anon_sym_LF, - ACTIONS(2579), 1, + ACTIONS(2533), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2585), 1, 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, + [35079] = 12, + ACTIONS(2397), 1, + sym_comment, ACTIONS(2587), 1, + anon_sym_PIPE, + ACTIONS(2589), 1, + anon_sym_CARET, + ACTIONS(2591), 1, anon_sym_AMP, - ACTIONS(2575), 2, + ACTIONS(2599), 1, + anon_sym_LF, + ACTIONS(2601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2603), 1, + anon_sym_AMP_AMP, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [34949] = 3, - ACTIONS(1871), 1, + [35124] = 12, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(2587), 1, + anon_sym_PIPE, + ACTIONS(2589), 1, + anon_sym_CARET, + ACTIONS(2591), 1, + anon_sym_AMP, + ACTIONS(2601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2603), 1, + anon_sym_AMP_AMP, + ACTIONS(2605), 1, anon_sym_LF, - ACTIONS(2318), 1, + ACTIONS(2583), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2593), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2597), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2585), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [35169] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(1873), 18, + ACTIONS(2543), 1, + anon_sym_LF, + ACTIONS(2545), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67228,76 +67404,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [34976] = 10, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(2455), 1, + [35196] = 3, + ACTIONS(1841), 1, anon_sym_LF, - ACTIONS(2585), 1, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(1843), 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, + [35223] = 12, + ACTIONS(2397), 1, + sym_comment, ACTIONS(2587), 1, + anon_sym_PIPE, + ACTIONS(2589), 1, + anon_sym_CARET, + ACTIONS(2591), 1, anon_sym_AMP, - ACTIONS(2575), 2, + ACTIONS(2601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2603), 1, + anon_sym_AMP_AMP, + ACTIONS(2607), 1, + anon_sym_LF, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2457), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35017] = 12, - ACTIONS(2318), 1, + [35268] = 12, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(2587), 1, + anon_sym_PIPE, + ACTIONS(2589), 1, + anon_sym_CARET, + ACTIONS(2591), 1, + anon_sym_AMP, + ACTIONS(2601), 1, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, + ACTIONS(2603), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2609), 1, + anon_sym_LF, + ACTIONS(2583), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2593), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2597), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2585), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [35313] = 12, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(2587), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2589), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2591), 1, anon_sym_AMP, - ACTIONS(2595), 1, + ACTIONS(2601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2603), 1, + anon_sym_AMP_AMP, + ACTIONS(2611), 1, anon_sym_LF, - ACTIONS(2575), 2, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35062] = 3, - ACTIONS(2318), 1, + [35358] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2517), 1, anon_sym_LF, - ACTIONS(2535), 18, + ACTIONS(2519), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67316,12 +67551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35089] = 3, - ACTIONS(2318), 1, + [35385] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2483), 1, anon_sym_LF, - ACTIONS(2555), 18, + ACTIONS(2485), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67340,12 +67575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35116] = 3, - ACTIONS(2318), 1, + [35412] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(2477), 1, anon_sym_LF, - ACTIONS(2541), 18, + ACTIONS(2479), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67364,17 +67599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35143] = 3, - ACTIONS(2318), 1, + [35439] = 5, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2489), 1, + ACTIONS(2453), 1, anon_sym_LF, - ACTIONS(2491), 18, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2455), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67388,41 +67625,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35170] = 8, - ACTIONS(2318), 1, + [35470] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2455), 1, - anon_sym_LF, - ACTIONS(2575), 2, + ACTIONS(2329), 1, + anon_sym_SLASH, + ACTIONS(2331), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2333), 1, + anon_sym_AMP_AMP, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2337), 1, + anon_sym_CARET, + ACTIONS(2339), 1, + anon_sym_AMP, + ACTIONS(2613), 1, + anon_sym_RPAREN, + ACTIONS(2325), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2593), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2327), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2343), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(2457), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [35207] = 3, - ACTIONS(2318), 1, + ACTIONS(2347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35519] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2455), 1, + ACTIONS(2471), 1, anon_sym_LF, - ACTIONS(2457), 18, + ACTIONS(2473), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67441,159 +67684,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35234] = 12, - ACTIONS(2318), 1, + [35546] = 12, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2579), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, - anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2587), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2589), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2591), 1, anon_sym_AMP, - ACTIONS(2597), 1, + ACTIONS(2601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2603), 1, + anon_sym_AMP_AMP, + ACTIONS(2615), 1, anon_sym_LF, - ACTIONS(2575), 2, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35279] = 4, - ACTIONS(2318), 1, + [35591] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2455), 1, - anon_sym_LF, - ACTIONS(2577), 3, - anon_sym_STAR, + ACTIONS(2329), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2457), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2331), 1, anon_sym_PIPE_PIPE, + ACTIONS(2333), 1, anon_sym_AMP_AMP, + ACTIONS(2335), 1, anon_sym_PIPE, + ACTIONS(2337), 1, anon_sym_CARET, + ACTIONS(2339), 1, anon_sym_AMP, + ACTIONS(2617), 1, + anon_sym_RPAREN, + ACTIONS(2325), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2343), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(2347), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [35308] = 12, - ACTIONS(2318), 1, + [35640] = 12, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2579), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, - anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2587), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2589), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2591), 1, anon_sym_AMP, - ACTIONS(2599), 1, + ACTIONS(2601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2603), 1, + anon_sym_AMP_AMP, + ACTIONS(2619), 1, anon_sym_LF, - ACTIONS(2575), 2, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35353] = 3, - ACTIONS(2318), 1, + [35685] = 12, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2479), 1, + ACTIONS(2587), 1, + anon_sym_PIPE, + ACTIONS(2589), 1, + anon_sym_CARET, + ACTIONS(2591), 1, + anon_sym_AMP, + ACTIONS(2601), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2603), 1, + anon_sym_AMP_AMP, + ACTIONS(2621), 1, anon_sym_LF, - ACTIONS(2481), 18, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2593), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2597), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2585), 3, 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, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35380] = 11, - ACTIONS(2318), 1, + [35730] = 12, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2455), 1, - anon_sym_LF, - ACTIONS(2583), 1, + ACTIONS(2587), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2589), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2591), 1, anon_sym_AMP, - ACTIONS(2457), 2, + ACTIONS(2601), 1, anon_sym_PIPE_PIPE, + ACTIONS(2603), 1, anon_sym_AMP_AMP, - ACTIONS(2575), 2, + ACTIONS(2623), 1, + anon_sym_LF, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35423] = 3, - ACTIONS(2318), 1, + [35775] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2513), 1, anon_sym_LF, - ACTIONS(2517), 18, + ACTIONS(2515), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67612,17 +67875,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35450] = 3, - ACTIONS(2318), 1, + [35802] = 6, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2453), 1, anon_sym_LF, - ACTIONS(2521), 18, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2597), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2455), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67634,135 +67902,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35477] = 5, - ACTIONS(2318), 1, + [35835] = 7, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2455), 1, + ACTIONS(2453), 1, anon_sym_LF, - ACTIONS(2575), 2, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2577), 3, + ACTIONS(2597), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2457), 13, - 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, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35508] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_SLASH, - ACTIONS(2373), 1, + ACTIONS(2455), 7, anon_sym_PIPE_PIPE, - ACTIONS(2375), 1, anon_sym_AMP_AMP, - ACTIONS(2377), 1, anon_sym_PIPE, - ACTIONS(2379), 1, anon_sym_CARET, - ACTIONS(2381), 1, anon_sym_AMP, - ACTIONS(2601), 1, - anon_sym_RPAREN, - ACTIONS(2367), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2369), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35557] = 12, - ACTIONS(2318), 1, + [35870] = 8, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2579), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, - anon_sym_AMP_AMP, - ACTIONS(2583), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - anon_sym_CARET, - ACTIONS(2587), 1, - anon_sym_AMP, - ACTIONS(2603), 1, + ACTIONS(2453), 1, anon_sym_LF, - ACTIONS(2575), 2, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35602] = 6, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(2455), 1, - anon_sym_LF, - ACTIONS(2575), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2593), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2577), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2457), 11, + ACTIONS(2455), 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, - [35635] = 3, - ACTIONS(2318), 1, + [35907] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2553), 1, anon_sym_LF, - ACTIONS(2531), 18, + ACTIONS(2555), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -67781,128 +67983,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [35662] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_SLASH, - ACTIONS(2373), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2375), 1, - anon_sym_AMP_AMP, - ACTIONS(2377), 1, - anon_sym_PIPE, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2605), 1, - anon_sym_RPAREN, - ACTIONS(2367), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2369), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35711] = 12, - ACTIONS(2318), 1, + [35934] = 9, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2579), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, - anon_sym_AMP_AMP, - ACTIONS(2583), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - anon_sym_CARET, - ACTIONS(2587), 1, - anon_sym_AMP, - ACTIONS(2607), 1, + ACTIONS(2453), 1, anon_sym_LF, - ACTIONS(2575), 2, + ACTIONS(2591), 1, + anon_sym_AMP, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [35756] = 12, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(2455), 1, - anon_sym_LF, - ACTIONS(2457), 1, + ACTIONS(2455), 4, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2587), 1, - anon_sym_AMP, - ACTIONS(2575), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2589), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2593), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2577), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35801] = 7, - ACTIONS(2318), 1, + [35973] = 4, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2455), 1, + ACTIONS(2453), 1, anon_sym_LF, - ACTIONS(2575), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2593), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(2457), 7, + ACTIONS(2455), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -67910,178 +68032,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [35836] = 12, - ACTIONS(2318), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36002] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2579), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, - anon_sym_AMP_AMP, - ACTIONS(2583), 1, - anon_sym_PIPE, - ACTIONS(2585), 1, - anon_sym_CARET, - ACTIONS(2587), 1, - anon_sym_AMP, - ACTIONS(2609), 1, + ACTIONS(2453), 1, anon_sym_LF, - ACTIONS(2575), 2, + ACTIONS(2455), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2593), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2577), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [35881] = 12, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(2579), 1, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, anon_sym_AMP_AMP, - ACTIONS(2583), 1, anon_sym_PIPE, - ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2587), 1, anon_sym_AMP, - ACTIONS(2611), 1, - anon_sym_LF, - ACTIONS(2575), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2589), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2577), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2591), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35926] = 9, - ACTIONS(2318), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36029] = 10, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2455), 1, + ACTIONS(2453), 1, anon_sym_LF, - ACTIONS(2587), 1, + ACTIONS(2589), 1, + anon_sym_CARET, + ACTIONS(2591), 1, anon_sym_AMP, - ACTIONS(2575), 2, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2577), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2457), 4, + ACTIONS(2455), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2591), 4, + ACTIONS(2585), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [35965] = 12, - ACTIONS(2318), 1, + [36070] = 12, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2579), 1, + ACTIONS(2453), 1, + anon_sym_LF, + ACTIONS(2455), 1, anon_sym_PIPE_PIPE, - ACTIONS(2581), 1, - anon_sym_AMP_AMP, - ACTIONS(2583), 1, + ACTIONS(2587), 1, anon_sym_PIPE, - ACTIONS(2585), 1, + ACTIONS(2589), 1, anon_sym_CARET, - ACTIONS(2587), 1, + ACTIONS(2591), 1, anon_sym_AMP, - ACTIONS(2613), 1, - anon_sym_LF, - ACTIONS(2575), 2, + ACTIONS(2603), 1, + anon_sym_AMP_AMP, + ACTIONS(2583), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2589), 2, + ACTIONS(2593), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2593), 2, + ACTIONS(2597), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2577), 3, + ACTIONS(2585), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2591), 4, + ACTIONS(2595), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [36010] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2618), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - anon_sym_LBRACK, - ACTIONS(1453), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(2615), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1437), 13, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - sym_identifier, - [36043] = 10, + [36115] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2255), 1, + ACTIONS(2261), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(1054), 1, + STATE(1070), 1, sym__type_declarator, - STATE(1380), 1, + STATE(1386), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68095,22 +68155,22 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [36082] = 10, + [36154] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(1930), 1, sym_identifier, ACTIONS(2267), 1, anon_sym_LPAREN2, ACTIONS(2269), 1, anon_sym_STAR, - STATE(1046), 1, - sym__field_declarator, - STATE(1326), 1, + STATE(1020), 1, + sym__declarator, + STATE(1407), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68118,28 +68178,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1087), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [36121] = 10, + STATE(1075), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36193] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2255), 1, + ACTIONS(2261), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(1058), 1, + STATE(1059), 1, sym__type_declarator, - STATE(1380), 1, + STATE(1386), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68153,51 +68213,22 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [36160] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1391), 1, - anon_sym___based, - ACTIONS(1930), 1, - sym_identifier, - ACTIONS(2261), 1, - anon_sym_LPAREN2, - ACTIONS(2263), 1, - anon_sym_STAR, - STATE(1017), 1, - sym__declarator, - STATE(1398), 1, - sym_ms_based_modifier, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(45), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(1073), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [36199] = 10, + [36232] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1042), 1, + STATE(1052), 1, sym__field_declarator, - STATE(1326), 1, + STATE(1328), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68205,13 +68236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1087), 5, + STATE(1085), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36238] = 10, + [36271] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, @@ -68222,11 +68253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2259), 1, anon_sym_STAR, - STATE(1069), 1, - sym__type_declarator, - STATE(1380), 1, + STATE(1048), 1, + sym__field_declarator, + STATE(1328), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68234,28 +68265,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1098), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [36277] = 10, + STATE(1085), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [36310] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1038), 1, + STATE(1015), 1, sym__declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68263,28 +68294,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [36316] = 10, + [36349] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2259), 1, anon_sym_STAR, - STATE(1051), 1, + STATE(1047), 1, sym__field_declarator, - STATE(1326), 1, + STATE(1328), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68292,28 +68323,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1087), 5, + STATE(1085), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36355] = 10, + [36388] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1027), 1, + STATE(1039), 1, sym__declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(45), 4, @@ -68321,28 +68352,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [36394] = 10, + [36427] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(2261), 1, + sym_identifier, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_STAR, + STATE(1067), 1, + sym__type_declarator, + STATE(1386), 1, + sym_ms_based_modifier, + STATE(882), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(45), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [36466] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 1, + ACTIONS(1629), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, + ACTIONS(1631), 1, anon_sym_STAR, ACTIONS(1938), 1, anon_sym_LBRACK, ACTIONS(2625), 1, anon_sym_RPAREN, - STATE(1142), 1, + STATE(1126), 1, + sym__abstract_declarator, + STATE(1141), 1, + sym_parameter_list, + STATE(991), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2627), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(1142), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [36504] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1629), 1, + anon_sym_LPAREN2, + ACTIONS(1631), 1, + anon_sym_STAR, + ACTIONS(1938), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + anon_sym_RPAREN, + STATE(1141), 1, sym_parameter_list, STATE(1144), 1, sym__abstract_declarator, - STATE(991), 2, + STATE(989), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2627), 4, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + STATE(1142), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [36542] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1629), 1, + anon_sym_LPAREN2, + ACTIONS(1631), 1, + anon_sym_STAR, + ACTIONS(1938), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_RPAREN, + STATE(1127), 1, + sym__abstract_declarator, + STATE(1141), 1, + sym_parameter_list, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2627), 4, @@ -68350,27 +68466,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1143), 4, + STATE(1142), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36432] = 10, + [36580] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 1, + ACTIONS(1629), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, + ACTIONS(1631), 1, anon_sym_STAR, + ACTIONS(1932), 1, + anon_sym_RPAREN, ACTIONS(1938), 1, anon_sym_LBRACK, - ACTIONS(2253), 1, - anon_sym_RPAREN, - STATE(1114), 1, + STATE(1108), 1, sym__abstract_declarator, - STATE(1142), 1, + STATE(1141), 1, sym_parameter_list, - STATE(874), 2, + STATE(993), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2627), 4, @@ -68378,27 +68494,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1143), 4, + STATE(1142), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36470] = 10, + [36618] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 1, + ACTIONS(1629), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, + ACTIONS(1631), 1, anon_sym_STAR, ACTIONS(1938), 1, anon_sym_LBRACK, - ACTIONS(2629), 1, + ACTIONS(2633), 1, anon_sym_RPAREN, STATE(1123), 1, sym__abstract_declarator, - STATE(1142), 1, + STATE(1141), 1, sym_parameter_list, - STATE(874), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2627), 4, @@ -68406,108 +68522,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1143), 4, + STATE(1142), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36508] = 7, + [36656] = 7, ACTIONS(3), 1, sym_comment, - STATE(999), 1, + STATE(998), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(2633), 2, + ACTIONS(2637), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(990), 2, + STATE(992), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2635), 3, + ACTIONS(2639), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2631), 6, + ACTIONS(2635), 6, anon_sym___based, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36540] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1590), 1, - anon_sym_LPAREN2, - ACTIONS(1592), 1, - anon_sym_STAR, - ACTIONS(1938), 1, - anon_sym_LBRACK, - ACTIONS(2641), 1, - anon_sym_RPAREN, - STATE(1128), 1, - sym__abstract_declarator, - STATE(1142), 1, - sym_parameter_list, - STATE(874), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2627), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(1143), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [36578] = 10, + [36688] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 1, + ACTIONS(1629), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, + ACTIONS(1631), 1, anon_sym_STAR, ACTIONS(1938), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, - anon_sym_RPAREN, - STATE(1127), 1, - sym__abstract_declarator, - STATE(1142), 1, - sym_parameter_list, - STATE(989), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2627), 4, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - STATE(1143), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [36616] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1590), 1, - anon_sym_LPAREN2, - ACTIONS(1592), 1, - anon_sym_STAR, - ACTIONS(1932), 1, + ACTIONS(2253), 1, anon_sym_RPAREN, - ACTIONS(1938), 1, - anon_sym_LBRACK, - STATE(1108), 1, + STATE(1107), 1, sym__abstract_declarator, - STATE(1142), 1, + STATE(1141), 1, sym_parameter_list, - STATE(988), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2627), 4, @@ -68515,117 +68575,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - STATE(1143), 4, + STATE(1142), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [36654] = 7, + [36726] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2226), 1, sym_primitive_type, ACTIONS(2645), 1, sym_identifier, - STATE(830), 1, + STATE(818), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2210), 4, + ACTIONS(2220), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2212), 4, + ACTIONS(2222), 4, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, - ACTIONS(2214), 4, + ACTIONS(2224), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [36685] = 11, + [36757] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2259), 1, anon_sym_STAR, ACTIONS(2647), 1, anon_sym_SEMI, ACTIONS(2649), 1, anon_sym_COLON, - STATE(1015), 1, + STATE(1028), 1, sym__field_declarator, - STATE(1326), 1, - sym_ms_based_modifier, - STATE(1374), 1, + STATE(1327), 1, sym_bitfield_clause, - STATE(1087), 5, + STATE(1328), 1, + sym_ms_based_modifier, + STATE(1085), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36723] = 11, + [36795] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2259), 1, anon_sym_STAR, ACTIONS(2649), 1, anon_sym_COLON, ACTIONS(2651), 1, anon_sym_SEMI, - STATE(1030), 1, + STATE(1040), 1, sym__field_declarator, - STATE(1324), 1, - sym_bitfield_clause, - STATE(1326), 1, + STATE(1328), 1, sym_ms_based_modifier, - STATE(1087), 5, + STATE(1380), 1, + sym_bitfield_clause, + STATE(1085), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36761] = 11, + [36833] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(2255), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2257), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2259), 1, anon_sym_STAR, ACTIONS(2649), 1, anon_sym_COLON, ACTIONS(2653), 1, anon_sym_SEMI, - STATE(1014), 1, + STATE(1016), 1, sym__field_declarator, - STATE(1326), 1, + STATE(1328), 1, sym_ms_based_modifier, - STATE(1386), 1, + STATE(1329), 1, sym_bitfield_clause, - STATE(1087), 5, + STATE(1085), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [36799] = 3, + [36871] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2657), 2, @@ -68643,7 +68703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36820] = 3, + [36892] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2661), 2, @@ -68661,12 +68721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym__Atomic, sym_identifier, - [36841] = 12, + [36913] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(115), 1, + ACTIONS(511), 1, anon_sym_LBRACE, ACTIONS(2663), 1, anon_sym_COMMA, @@ -68678,136 +68738,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2671), 1, anon_sym_EQ, - STATE(125), 1, + STATE(334), 1, sym_compound_statement, - STATE(1033), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1183), 1, + STATE(1160), 1, + aux_sym_declaration_repeat1, + STATE(1043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [36951] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(319), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_COMMA, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, + anon_sym_EQ, + ACTIONS(2673), 1, + anon_sym_SEMI, + STATE(313), 1, + sym_compound_statement, + STATE(1032), 1, + sym_parameter_list, + STATE(1206), 1, + aux_sym_declaration_repeat1, + STATE(1043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [36989] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_COMMA, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, + anon_sym_EQ, + ACTIONS(2675), 1, + anon_sym_SEMI, + STATE(346), 1, + sym_compound_statement, + STATE(1032), 1, + sym_parameter_list, + STATE(1199), 1, aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [36879] = 9, + [37027] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1009), 1, + STATE(1002), 1, sym__declarator, - STATE(1156), 1, + STATE(1186), 1, sym_init_declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [36911] = 9, + [37059] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1043), 1, + STATE(1001), 1, sym__declarator, - STATE(1177), 1, + STATE(1169), 1, sym_init_declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [36943] = 9, + [37091] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(1041), 1, sym__declarator, - STATE(1156), 1, + STATE(1169), 1, sym_init_declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [36975] = 9, + [37123] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1011), 1, + STATE(1046), 1, sym__declarator, - STATE(1168), 1, + STATE(1176), 1, sym_init_declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37007] = 9, + [37155] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1053), 1, sym__declarator, - STATE(1230), 1, + STATE(1232), 1, sym_init_declarator, - STATE(1398), 1, + STATE(1407), 1, + sym_ms_based_modifier, + STATE(1075), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37187] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(1930), 1, + sym_identifier, + ACTIONS(2267), 1, + anon_sym_LPAREN2, + ACTIONS(2269), 1, + anon_sym_STAR, + STATE(1009), 1, + sym__declarator, + STATE(1176), 1, + sym_init_declarator, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37039] = 12, + [37219] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(115), 1, anon_sym_LBRACE, ACTIONS(2663), 1, anon_sym_COMMA, @@ -68817,207 +68952,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2671), 1, anon_sym_EQ, - ACTIONS(2673), 1, + ACTIONS(2677), 1, anon_sym_SEMI, - STATE(356), 1, + STATE(118), 1, sym_compound_statement, - STATE(1033), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1192), 1, + STATE(1187), 1, aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37077] = 9, + [37257] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1049), 1, + STATE(1042), 1, sym__declarator, - STATE(1174), 1, + STATE(1170), 1, sym_init_declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37109] = 9, + [37289] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1006), 1, + STATE(1045), 1, sym__declarator, - STATE(1177), 1, + STATE(1186), 1, sym_init_declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37141] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(2663), 1, - anon_sym_COMMA, - ACTIONS(2665), 1, - anon_sym_LPAREN2, - ACTIONS(2669), 1, - anon_sym_LBRACK, - ACTIONS(2671), 1, - anon_sym_EQ, - ACTIONS(2675), 1, - anon_sym_SEMI, - STATE(318), 1, - sym_compound_statement, - STATE(1033), 1, - sym_parameter_list, - STATE(1150), 1, - aux_sym_declaration_repeat1, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [37179] = 9, + [37321] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, STATE(1000), 1, sym__declarator, - STATE(1174), 1, + STATE(1170), 1, sym_init_declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37211] = 12, + [37353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(321), 1, - anon_sym_LBRACE, - ACTIONS(2663), 1, + ACTIONS(2681), 1, + anon_sym___attribute__, + ACTIONS(2683), 1, + anon_sym_LBRACK, + STATE(1030), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2679), 7, anon_sym_COMMA, - ACTIONS(2665), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2669), 1, - anon_sym_LBRACK, - ACTIONS(2671), 1, - anon_sym_EQ, - ACTIONS(2677), 1, anon_sym_SEMI, - STATE(360), 1, - sym_compound_statement, - STATE(1033), 1, - sym_parameter_list, - STATE(1164), 1, - aux_sym_declaration_repeat1, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [37249] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [37376] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1048), 1, + STATE(1074), 1, sym__declarator, - STATE(1168), 1, - sym_init_declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37281] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1391), 1, - anon_sym___based, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN2, - ACTIONS(2259), 1, - anon_sym_STAR, - STATE(1066), 1, - sym__type_declarator, - STATE(1380), 1, - sym_ms_based_modifier, - STATE(1098), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37310] = 11, + [37405] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2649), 1, - anon_sym_COLON, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2679), 1, - anon_sym_COMMA, - ACTIONS(2681), 1, - anon_sym_SEMI, - ACTIONS(2683), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(1091), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1106), 1, - aux_sym_field_declaration_repeat1, - STATE(1400), 1, - sym_bitfield_clause, - STATE(1061), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37345] = 11, + ACTIONS(2685), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [37432] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -69026,40 +69100,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2679), 1, + ACTIONS(2687), 1, anon_sym_COMMA, - ACTIONS(2683), 1, - anon_sym_LBRACK, - ACTIONS(2685), 1, + ACTIONS(2689), 1, anon_sym_SEMI, + ACTIONS(2691), 1, + anon_sym_LBRACK, STATE(1091), 1, sym_parameter_list, - STATE(1107), 1, + STATE(1106), 1, aux_sym_field_declaration_repeat1, - STATE(1357), 1, + STATE(1390), 1, sym_bitfield_clause, - STATE(1061), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [37380] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2689), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2692), 1, - anon_sym_LBRACK, - STATE(1016), 2, + STATE(1056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2687), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [37403] = 7, + [37467] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -69068,39 +69124,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(1033), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1044), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2694), 5, + ACTIONS(2693), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [37430] = 8, + [37494] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2255), 1, + ACTIONS(1930), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2259), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1063), 1, - sym__type_declarator, - STATE(1380), 1, + STATE(1080), 1, + sym__declarator, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1098), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37459] = 8, + STATE(1075), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [37523] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, @@ -69111,30 +69167,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2259), 1, anon_sym_STAR, - STATE(1088), 1, - sym__type_declarator, - STATE(1380), 1, + STATE(1069), 1, + sym__field_declarator, + STATE(1328), 1, sym_ms_based_modifier, - STATE(1098), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37488] = 8, + STATE(1085), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [37552] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, + anon_sym_LBRACK, + STATE(1032), 1, + sym_parameter_list, + STATE(1043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2695), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [37579] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2255), 1, + ACTIONS(2261), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(1059), 1, + STATE(1066), 1, sym__type_declarator, - STATE(1380), 1, + STATE(1386), 1, sym_ms_based_modifier, STATE(1098), 5, sym_parenthesized_type_declarator, @@ -69142,20 +69218,20 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37517] = 8, + [37608] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2255), 1, + ACTIONS(2261), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(1074), 1, + STATE(1065), 1, sym__type_declarator, - STATE(1380), 1, + STATE(1386), 1, sym_ms_based_modifier, STATE(1098), 5, sym_parenthesized_type_declarator, @@ -69163,41 +69239,20 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37546] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1391), 1, - anon_sym___based, - ACTIONS(2265), 1, - sym_identifier, - ACTIONS(2267), 1, - anon_sym_LPAREN2, - ACTIONS(2269), 1, - anon_sym_STAR, - STATE(1065), 1, - sym__field_declarator, - STATE(1326), 1, - sym_ms_based_modifier, - STATE(1087), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [37575] = 8, + [37637] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2255), 1, + ACTIONS(2261), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(1060), 1, + STATE(1055), 1, sym__type_declarator, - STATE(1380), 1, + STATE(1386), 1, sym_ms_based_modifier, STATE(1098), 5, sym_parenthesized_type_declarator, @@ -69205,128 +69260,88 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37604] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2665), 1, - anon_sym_LPAREN2, - ACTIONS(2669), 1, - anon_sym_LBRACK, - STATE(1033), 1, - sym_parameter_list, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2696), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [37631] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 1, - anon_sym___attribute__, - ACTIONS(2702), 1, - anon_sym_LBRACK, - STATE(1036), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2698), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [37654] = 8, + [37666] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1083), 1, + STATE(1095), 1, sym__declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37683] = 7, + [37695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(2699), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2665), 1, - anon_sym_LPAREN2, - ACTIONS(2669), 1, + ACTIONS(2702), 1, anon_sym_LBRACK, - STATE(1033), 1, - sym_parameter_list, - STATE(1044), 2, + STATE(1025), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2704), 5, + ACTIONS(2697), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [37710] = 8, + anon_sym_COLON, + [37718] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2265), 1, + ACTIONS(2261), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(1089), 1, - sym__field_declarator, - STATE(1326), 1, + STATE(1054), 1, + sym__type_declarator, + STATE(1386), 1, sym_ms_based_modifier, - STATE(1087), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [37739] = 8, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [37747] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1930), 1, - sym_identifier, ACTIONS(2261), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(1078), 1, - sym__declarator, - STATE(1398), 1, + STATE(1058), 1, + sym__type_declarator, + STATE(1386), 1, sym_ms_based_modifier, - STATE(1073), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [37768] = 11, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [37776] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -69335,74 +69350,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2679), 1, + ACTIONS(2687), 1, anon_sym_COMMA, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_LBRACK, - ACTIONS(2706), 1, + ACTIONS(2704), 1, anon_sym_SEMI, STATE(1091), 1, sym_parameter_list, STATE(1109), 1, aux_sym_field_declaration_repeat1, - STATE(1307), 1, + STATE(1305), 1, sym_bitfield_clause, - STATE(1061), 2, + STATE(1056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [37803] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1391), 1, - anon_sym___based, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN2, - ACTIONS(2259), 1, - anon_sym_STAR, - STATE(1068), 1, - sym__type_declarator, - STATE(1380), 1, - sym_ms_based_modifier, - STATE(1098), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37832] = 8, + [37811] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, - STATE(1092), 1, + STATE(1076), 1, sym__declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37861] = 5, + [37840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 1, + ACTIONS(2708), 1, anon_sym___attribute__, - ACTIONS(2710), 1, + ACTIONS(2711), 1, anon_sym_LBRACK, - STATE(1025), 2, + STATE(1030), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2708), 7, + ACTIONS(2706), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69410,59 +69404,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37884] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1391), 1, - anon_sym___based, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN2, - ACTIONS(2259), 1, - anon_sym_STAR, - STATE(1071), 1, - sym__type_declarator, - STATE(1380), 1, - sym_ms_based_modifier, - STATE(1098), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [37913] = 8, + [37863] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, ACTIONS(1930), 1, sym_identifier, - ACTIONS(2261), 1, + ACTIONS(2267), 1, anon_sym_LPAREN2, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_STAR, STATE(1081), 1, sym__declarator, - STATE(1398), 1, + STATE(1407), 1, sym_ms_based_modifier, - STATE(1073), 5, + STATE(1075), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [37942] = 5, + [37892] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2714), 1, + ACTIONS(2681), 1, anon_sym___attribute__, - ACTIONS(2717), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - STATE(1036), 2, + STATE(1013), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2712), 7, + ACTIONS(2713), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69470,7 +69443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [37965] = 8, + [37915] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, @@ -69481,9 +69454,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2259), 1, anon_sym_STAR, - STATE(1056), 1, + STATE(1090), 1, + sym__field_declarator, + STATE(1328), 1, + sym_ms_based_modifier, + STATE(1085), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [37944] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(2261), 1, + sym_identifier, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_STAR, + STATE(1068), 1, sym__type_declarator, - STATE(1380), 1, + STATE(1386), 1, sym_ms_based_modifier, STATE(1098), 5, sym_parenthesized_type_declarator, @@ -69491,40 +69485,41 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [37994] = 7, + [37973] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2665), 1, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(2261), 1, + sym_identifier, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2669), 1, - anon_sym_LBRACK, - STATE(1033), 1, - sym_parameter_list, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2719), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [38021] = 8, + ACTIONS(2265), 1, + anon_sym_STAR, + STATE(1057), 1, + sym__type_declarator, + STATE(1386), 1, + sym_ms_based_modifier, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [38002] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(2255), 1, + ACTIONS(2261), 1, sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_LPAREN2, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_STAR, - STATE(1055), 1, + STATE(1088), 1, sym__type_declarator, - STATE(1380), 1, + STATE(1386), 1, sym_ms_based_modifier, STATE(1098), 5, sym_parenthesized_type_declarator, @@ -69532,62 +69527,93 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [38050] = 8, + [38031] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, anon_sym___based, - ACTIONS(1930), 1, - sym_identifier, ACTIONS(2261), 1, + sym_identifier, + ACTIONS(2263), 1, anon_sym_LPAREN2, + ACTIONS(2265), 1, + anon_sym_STAR, + STATE(1060), 1, + sym__type_declarator, + STATE(1386), 1, + sym_ms_based_modifier, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [38060] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 1, + anon_sym___based, + ACTIONS(2261), 1, + sym_identifier, ACTIONS(2263), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, anon_sym_STAR, STATE(1072), 1, - sym__declarator, - STATE(1398), 1, + sym__type_declarator, + STATE(1386), 1, sym_ms_based_modifier, - STATE(1073), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [38079] = 3, + STATE(1098), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [38089] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2721), 9, + STATE(1032), 1, + sym_parameter_list, + STATE(1043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2717), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [38097] = 7, + [38116] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(2649), 1, + anon_sym_COLON, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2683), 1, + ACTIONS(2687), 1, + anon_sym_COMMA, + ACTIONS(2691), 1, anon_sym_LBRACK, + ACTIONS(2719), 1, + anon_sym_SEMI, STATE(1091), 1, sym_parameter_list, - STATE(1061), 2, + STATE(1111), 1, + aux_sym_field_declaration_repeat1, + STATE(1272), 1, + sym_bitfield_clause, + STATE(1056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2725), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [38123] = 10, + [38151] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -69602,65 +69628,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(2673), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1192), 1, + STATE(1206), 1, aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38155] = 5, + [38183] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2729), 1, - anon_sym_LBRACK, - STATE(1016), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2727), 6, + ACTIONS(2663), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2665), 1, anon_sym_LPAREN2, + ACTIONS(2667), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2669), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, anon_sym_EQ, - [38177] = 3, + STATE(1032), 1, + sym_parameter_list, + STATE(1160), 1, + aux_sym_declaration_repeat1, + STATE(1043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2731), 9, + STATE(1025), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2721), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [38195] = 7, + [38237] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_LBRACK, STATE(1091), 1, sym_parameter_list, - STATE(1061), 2, + STATE(1056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2735), 4, + ACTIONS(2725), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38221] = 10, + [38263] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -69675,14 +69708,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(2675), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1150), 1, + STATE(1199), 1, aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38253] = 10, + [38295] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -69697,41 +69730,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(2677), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1164), 1, + STATE(1187), 1, aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38285] = 10, + [38327] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2663), 1, - anon_sym_COMMA, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2667), 1, + ACTIONS(2691), 1, + anon_sym_LBRACK, + STATE(1091), 1, + sym_parameter_list, + STATE(1056), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2727), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(2669), 1, + anon_sym_COLON, + [38353] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2691), 1, anon_sym_LBRACK, - ACTIONS(2671), 1, - anon_sym_EQ, - STATE(1033), 1, + STATE(1091), 1, sym_parameter_list, - STATE(1183), 1, - aux_sym_declaration_repeat1, - STATE(1044), 2, + STATE(1056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38317] = 3, + ACTIONS(2729), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [38379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 1, + ACTIONS(2733), 1, anon_sym_LBRACK, - ACTIONS(2737), 9, + ACTIONS(2731), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -69741,37 +69790,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [38335] = 7, + [38397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2665), 1, + ACTIONS(2737), 1, + anon_sym_LBRACK, + ACTIONS(2735), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2683), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [38415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 1, anon_sym_LBRACK, - STATE(1091), 1, - sym_parameter_list, - STATE(1061), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2741), 4, + ACTIONS(2739), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - [38361] = 7, + [38433] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_LBRACK, STATE(1091), 1, sym_parameter_list, - STATE(1061), 2, + STATE(1056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(2743), 4, @@ -69779,356 +69839,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38387] = 5, + [38459] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2749), 1, - sym_system_lib_string, - STATE(1319), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2747), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [38408] = 7, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, + anon_sym_EQ, + STATE(1032), 1, + sym_parameter_list, + ACTIONS(2745), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38486] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, + ACTIONS(2747), 1, + anon_sym_COMMA, + ACTIONS(2749), 1, + anon_sym_SEMI, + ACTIONS(2751), 1, anon_sym_LBRACK, STATE(1103), 1, sym_parameter_list, - STATE(1084), 2, + STATE(1152), 1, + aux_sym_type_definition_repeat2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2751), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [38433] = 9, + [38515] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, - anon_sym_LBRACK, - ACTIONS(2755), 1, + ACTIONS(2747), 1, anon_sym_COMMA, - ACTIONS(2757), 1, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, anon_sym_SEMI, STATE(1103), 1, sym_parameter_list, - STATE(1153), 1, + STATE(1157), 1, aux_sym_type_definition_repeat2, - STATE(1084), 2, + STATE(1079), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [38544] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2757), 1, + anon_sym_LBRACK, + STATE(1025), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38462] = 9, + ACTIONS(2755), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + [38565] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, - anon_sym_LBRACK, - ACTIONS(2755), 1, + ACTIONS(2747), 1, anon_sym_COMMA, + ACTIONS(2751), 1, + anon_sym_LBRACK, ACTIONS(2759), 1, anon_sym_SEMI, STATE(1103), 1, sym_parameter_list, - STATE(1190), 1, + STATE(1201), 1, aux_sym_type_definition_repeat2, - STATE(1084), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38491] = 8, + [38594] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2669), 1, - anon_sym_LBRACK, - ACTIONS(2671), 1, - anon_sym_EQ, - STATE(1033), 1, - sym_parameter_list, - ACTIONS(2761), 2, + ACTIONS(2747), 1, anon_sym_COMMA, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2761), 1, anon_sym_SEMI, - STATE(1044), 2, + STATE(1103), 1, + sym_parameter_list, + STATE(1155), 1, + aux_sym_type_definition_repeat2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38518] = 7, + [38623] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, + ACTIONS(2751), 1, anon_sym_LBRACK, STATE(1103), 1, sym_parameter_list, - STATE(1084), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(2763), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [38543] = 9, + [38648] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, - anon_sym_LBRACK, - ACTIONS(2755), 1, + ACTIONS(2747), 1, anon_sym_COMMA, + ACTIONS(2751), 1, + anon_sym_LBRACK, ACTIONS(2765), 1, anon_sym_SEMI, STATE(1103), 1, sym_parameter_list, - STATE(1203), 1, + STATE(1173), 1, aux_sym_type_definition_repeat2, - STATE(1084), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38572] = 9, + [38677] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, + ACTIONS(2751), 1, anon_sym_LBRACK, - ACTIONS(2755), 1, - anon_sym_COMMA, - ACTIONS(2767), 1, - anon_sym_SEMI, STATE(1103), 1, sym_parameter_list, - STATE(1186), 1, - aux_sym_type_definition_repeat2, - STATE(1084), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [38601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 1, - anon_sym_LBRACK, - STATE(1016), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2769), 5, + ACTIONS(2767), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - [38622] = 5, + [38702] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2769), 1, sym_identifier, - ACTIONS(2775), 1, + ACTIONS(2773), 1, sym_system_lib_string, - STATE(1318), 2, + STATE(1320), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2747), 5, + ACTIONS(2771), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [38643] = 9, + [38723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2665), 1, - anon_sym_LPAREN2, - ACTIONS(2753), 1, - anon_sym_LBRACK, - ACTIONS(2755), 1, - anon_sym_COMMA, + ACTIONS(2775), 1, + sym_identifier, ACTIONS(2777), 1, - anon_sym_SEMI, - STATE(1103), 1, - sym_parameter_list, - STATE(1149), 1, - aux_sym_type_definition_repeat2, - STATE(1084), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [38672] = 5, + sym_system_lib_string, + STATE(1319), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2771), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [38744] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2779), 1, sym_identifier, ACTIONS(2781), 1, sym_system_lib_string, - STATE(1425), 2, + STATE(1448), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2747), 5, + ACTIONS(2771), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [38693] = 7, + [38765] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2683), 1, + ACTIONS(2747), 1, + anon_sym_COMMA, + ACTIONS(2751), 1, anon_sym_LBRACK, - STATE(1091), 1, + ACTIONS(2783), 1, + anon_sym_SEMI, + STATE(1103), 1, sym_parameter_list, - STATE(1061), 2, + STATE(1154), 1, + aux_sym_type_definition_repeat2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2783), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [38718] = 9, + [38794] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, - anon_sym_LBRACK, - ACTIONS(2755), 1, + ACTIONS(2747), 1, anon_sym_COMMA, + ACTIONS(2751), 1, + anon_sym_LBRACK, ACTIONS(2785), 1, anon_sym_SEMI, STATE(1103), 1, sym_parameter_list, - STATE(1199), 1, + STATE(1193), 1, aux_sym_type_definition_repeat2, - STATE(1084), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38747] = 7, + [38823] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, + ACTIONS(2751), 1, anon_sym_LBRACK, STATE(1103), 1, sym_parameter_list, - STATE(1084), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(2787), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [38772] = 9, + [38848] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, - anon_sym_LBRACK, - ACTIONS(2755), 1, + ACTIONS(2747), 1, anon_sym_COMMA, + ACTIONS(2751), 1, + anon_sym_LBRACK, ACTIONS(2789), 1, anon_sym_SEMI, STATE(1103), 1, sym_parameter_list, - STATE(1157), 1, + STATE(1198), 1, aux_sym_type_definition_repeat2, - STATE(1084), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38801] = 7, + [38877] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, + ACTIONS(2691), 1, anon_sym_LBRACK, - STATE(1103), 1, + STATE(1091), 1, sym_parameter_list, - STATE(1084), 2, + STATE(1056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(2791), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [38902] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2751), 1, + anon_sym_LBRACK, + STATE(1103), 1, + sym_parameter_list, + STATE(1079), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2793), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [38826] = 5, + [38927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 1, - sym_identifier, ACTIONS(2795), 1, + sym_identifier, + ACTIONS(2797), 1, sym_system_lib_string, - STATE(1439), 2, + STATE(1437), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2747), 5, + ACTIONS(2771), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [38847] = 9, + [38948] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, + ACTIONS(2751), 1, anon_sym_LBRACK, - ACTIONS(2755), 1, - anon_sym_COMMA, - ACTIONS(2797), 1, - anon_sym_SEMI, STATE(1103), 1, sym_parameter_list, - STATE(1162), 1, - aux_sym_type_definition_repeat2, - STATE(1084), 2, + ACTIONS(2799), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38876] = 8, + [38972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2803), 1, + anon_sym_LBRACK, + ACTIONS(2801), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [38988] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -70139,19 +70229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(104), 1, + STATE(110), 1, sym_compound_statement, - STATE(1033), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1044), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38902] = 3, + [39014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2807), 1, anon_sym_LBRACK, - ACTIONS(2799), 7, + ACTIONS(2805), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70159,29 +70249,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [38918] = 7, + [39030] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(511), 1, + anon_sym_LBRACE, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(1103), 1, + STATE(357), 1, + sym_compound_statement, + STATE(1032), 1, sym_parameter_list, - ACTIONS(2803), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1084), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [38942] = 3, + [39056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(2805), 7, + ACTIONS(2809), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70189,12 +70280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [38958] = 3, + [39072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2815), 1, anon_sym_LBRACK, - ACTIONS(2809), 7, + ACTIONS(2813), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -70202,86 +70293,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [38974] = 3, + [39088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2819), 1, anon_sym_LBRACK, - ACTIONS(2813), 7, + STATE(1025), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2817), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [38990] = 8, + [39108] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(321), 1, + ACTIONS(41), 1, anon_sym_LBRACE, ACTIONS(2665), 1, anon_sym_LPAREN2, ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(342), 1, + STATE(350), 1, sym_compound_statement, - STATE(1033), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1044), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39016] = 7, + [39134] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(319), 1, + anon_sym_LBRACE, ACTIONS(2665), 1, anon_sym_LPAREN2, ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(1033), 1, + STATE(332), 1, + sym_compound_statement, + STATE(1032), 1, sym_parameter_list, - ACTIONS(2817), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1044), 2, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2819), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [39056] = 8, + [39160] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(2665), 1, anon_sym_LPAREN2, ACTIONS(2669), 1, anon_sym_LBRACK, - STATE(345), 1, - sym_compound_statement, - STATE(1033), 1, + STATE(1032), 1, sym_parameter_list, - STATE(1044), 2, + ACTIONS(2821), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39082] = 3, + [39184] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2825), 1, @@ -70294,40 +70374,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39098] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(2665), 1, - anon_sym_LPAREN2, - ACTIONS(2669), 1, - anon_sym_LBRACK, - STATE(350), 1, - sym_compound_statement, - STATE(1033), 1, - sym_parameter_list, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39124] = 5, + [39200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, ACTIONS(2829), 1, anon_sym_LBRACK, - STATE(1016), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2827), 4, + ACTIONS(2827), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - [39144] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [39216] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2833), 1, @@ -70339,7 +70399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39159] = 3, + [39231] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2837), 1, @@ -70351,7 +70411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39174] = 3, + [39246] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -70363,115 +70423,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39189] = 7, + [39261] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2753), 1, + ACTIONS(2751), 1, anon_sym_LBRACK, ACTIONS(2843), 1, anon_sym_RPAREN, STATE(1103), 1, sym_parameter_list, - STATE(1084), 2, + STATE(1079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39212] = 7, + [39284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + anon_sym_LBRACK, + ACTIONS(2845), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [39299] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_LBRACK, - ACTIONS(2845), 1, + ACTIONS(2849), 1, anon_sym_RPAREN, STATE(1091), 1, sym_parameter_list, - STATE(1061), 2, + STATE(1056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39235] = 3, + [39322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - ACTIONS(2847), 6, + ACTIONS(2851), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39250] = 3, + [39337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2857), 1, anon_sym_LBRACK, - ACTIONS(2851), 6, + ACTIONS(2855), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39265] = 7, + [39352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2665), 1, - anon_sym_LPAREN2, - ACTIONS(2669), 1, + ACTIONS(2861), 1, anon_sym_LBRACK, - ACTIONS(2855), 1, - anon_sym_RPAREN, - STATE(1033), 1, - sym_parameter_list, - STATE(1044), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2859), 1, - anon_sym_LBRACK, - ACTIONS(2857), 6, + ACTIONS(2859), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39303] = 3, + [39367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 1, + ACTIONS(2865), 1, anon_sym_LBRACK, - ACTIONS(2861), 6, + ACTIONS(2863), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [39318] = 3, + [39382] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2865), 6, - anon_sym_COMMA, + ACTIONS(2867), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [39333] = 3, + STATE(1032), 1, + sym_parameter_list, + STATE(1043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [39405] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2871), 1, @@ -70482,7 +70542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39347] = 3, + [39419] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2875), 1, @@ -70493,7 +70553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39361] = 3, + [39433] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2879), 1, @@ -70504,55 +70564,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39375] = 5, + [39447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 1, - anon_sym_LBRACK, ACTIONS(2881), 1, + anon_sym_LBRACK, + ACTIONS(2884), 1, anon_sym_EQ, - ACTIONS(2883), 1, + ACTIONS(2886), 1, anon_sym_DOT, - STATE(1102), 3, + STATE(1099), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [39393] = 3, + [39465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 1, + ACTIONS(2891), 1, anon_sym_LBRACK, - ACTIONS(2885), 5, + ACTIONS(2889), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39407] = 3, + [39479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, + ACTIONS(2895), 1, anon_sym_LBRACK, - ACTIONS(2889), 5, + ACTIONS(2893), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39421] = 5, + [39493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 1, + ACTIONS(2899), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_EQ, - ACTIONS(2898), 1, - anon_sym_DOT, - STATE(1102), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [39439] = 3, + ACTIONS(2897), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [39507] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2903), 1, @@ -70563,7 +70621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39453] = 3, + [39521] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2907), 1, @@ -70574,132 +70632,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [39467] = 3, + [39535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 1, + ACTIONS(1471), 1, anon_sym_LBRACK, - ACTIONS(2909), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [39481] = 6, + ACTIONS(2909), 1, + anon_sym_EQ, + ACTIONS(2911), 1, + anon_sym_DOT, + STATE(1099), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [39553] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2649), 1, anon_sym_COLON, - ACTIONS(2679), 1, + ACTIONS(2687), 1, anon_sym_COMMA, ACTIONS(2913), 1, anon_sym_SEMI, - STATE(1135), 1, + STATE(1136), 1, aux_sym_field_declaration_repeat1, - STATE(1337), 1, + STATE(1334), 1, sym_bitfield_clause, - [39500] = 6, + [39572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 1, - anon_sym_COLON, - ACTIONS(2679), 1, + ACTIONS(2665), 1, + anon_sym_LPAREN2, + ACTIONS(2917), 1, + anon_sym_LBRACK, + STATE(1128), 1, + sym_parameter_list, + ACTIONS(2915), 2, anon_sym_COMMA, - ACTIONS(2915), 1, - anon_sym_SEMI, - STATE(1135), 1, - aux_sym_field_declaration_repeat1, - STATE(1341), 1, - sym_bitfield_clause, - [39519] = 5, + anon_sym_RPAREN, + [39589] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - STATE(1134), 1, + STATE(1128), 1, sym_parameter_list, - ACTIONS(2917), 2, + ACTIONS(2919), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39536] = 6, + [39606] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2649), 1, anon_sym_COLON, - ACTIONS(2679), 1, + ACTIONS(2687), 1, anon_sym_COMMA, ACTIONS(2921), 1, anon_sym_SEMI, - STATE(1135), 1, + STATE(1136), 1, aux_sym_field_declaration_repeat1, - STATE(1272), 1, + STATE(1376), 1, sym_bitfield_clause, - [39555] = 5, + [39625] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, ACTIONS(2925), 1, anon_sym_COLON_COLON, - STATE(1223), 1, + STATE(1228), 1, sym_argument_list, ACTIONS(2923), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [39572] = 6, + [39642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2289), 1, - anon_sym_LBRACE, + ACTIONS(2649), 1, + anon_sym_COLON, + ACTIONS(2687), 1, + anon_sym_COMMA, ACTIONS(2927), 1, - sym_identifier, - STATE(877), 1, - sym_field_declaration_list, - STATE(1171), 1, - sym_ms_declspec_modifier, - [39591] = 6, + anon_sym_SEMI, + STATE(1136), 1, + aux_sym_field_declaration_repeat1, + STATE(1350), 1, + sym_bitfield_clause, + [39661] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2289), 1, + ACTIONS(2283), 1, anon_sym_LBRACE, ACTIONS(2929), 1, sym_identifier, - STATE(872), 1, + STATE(875), 1, sym_field_declaration_list, - STATE(1170), 1, + STATE(1175), 1, sym_ms_declspec_modifier, - [39610] = 5, + [39680] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - STATE(1134), 1, + STATE(1128), 1, sym_parameter_list, - ACTIONS(2817), 2, + ACTIONS(2821), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39627] = 5, + [39697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, - anon_sym_LPAREN2, - ACTIONS(2919), 1, - anon_sym_LBRACK, - STATE(1134), 1, - sym_parameter_list, - ACTIONS(2931), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39644] = 5, - ACTIONS(2318), 1, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2283), 1, + anon_sym_LBRACE, + ACTIONS(2931), 1, + sym_identifier, + STATE(873), 1, + sym_field_declaration_list, + STATE(1174), 1, + sym_ms_declspec_modifier, + [39716] = 5, + ACTIONS(2397), 1, sym_comment, ACTIONS(2933), 1, anon_sym_LF, @@ -70707,9 +70767,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2937), 1, sym_preproc_arg, - STATE(1258), 1, + STATE(1261), 1, sym_preproc_params, - [39660] = 2, + [39732] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2939), 4, @@ -70717,8 +70777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39670] = 5, - ACTIONS(2318), 1, + [39742] = 5, + ACTIONS(2397), 1, sym_comment, ACTIONS(2935), 1, anon_sym_LPAREN, @@ -70726,28 +70786,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, ACTIONS(2943), 1, sym_preproc_arg, - STATE(1261), 1, + STATE(1254), 1, sym_preproc_params, - [39686] = 2, + [39758] = 5, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(2945), 1, + anon_sym_DQUOTE, + ACTIONS(2947), 1, + aux_sym_string_literal_token1, + ACTIONS(2949), 1, + sym_escape_sequence, + STATE(1140), 1, + aux_sym_string_literal_repeat1, + [39774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 4, + ACTIONS(2951), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39696] = 5, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(2947), 1, - anon_sym_DQUOTE, - ACTIONS(2949), 1, - aux_sym_string_literal_token1, - ACTIONS(2951), 1, - sym_escape_sequence, - STATE(1139), 1, - aux_sym_string_literal_repeat1, - [39712] = 2, + [39784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2953), 4, @@ -70755,7 +70815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39722] = 2, + [39794] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2955), 4, @@ -70763,8 +70823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39732] = 5, - ACTIONS(2318), 1, + [39804] = 5, + ACTIONS(2397), 1, sym_comment, ACTIONS(2957), 1, anon_sym_DQUOTE, @@ -70774,257 +70834,257 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, STATE(1145), 1, aux_sym_string_literal_repeat1, - [39748] = 5, + [39820] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, ACTIONS(2963), 1, anon_sym_RPAREN, - STATE(1134), 1, + STATE(1128), 1, sym_parameter_list, - [39764] = 5, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(2935), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - anon_sym_LF, - ACTIONS(2967), 1, - sym_preproc_arg, - STATE(1252), 1, - sym_preproc_params, - [39780] = 2, + [39836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 4, + ACTIONS(2965), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39790] = 4, + [39846] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - STATE(1264), 1, + STATE(1263), 1, sym_argument_list, - ACTIONS(2971), 2, + ACTIONS(2967), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [39804] = 5, + [39860] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - ACTIONS(2973), 1, + ACTIONS(2969), 1, anon_sym_RPAREN, - STATE(1134), 1, + STATE(1128), 1, sym_parameter_list, - [39820] = 5, + [39876] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - ACTIONS(2975), 1, + ACTIONS(2971), 1, anon_sym_RPAREN, - STATE(1134), 1, + STATE(1128), 1, sym_parameter_list, - [39836] = 5, - ACTIONS(2318), 1, + [39892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2973), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [39902] = 5, + ACTIONS(2397), 1, sym_comment, ACTIONS(2935), 1, anon_sym_LPAREN, - ACTIONS(2977), 1, + ACTIONS(2975), 1, anon_sym_LF, - ACTIONS(2979), 1, + ACTIONS(2977), 1, sym_preproc_arg, - STATE(1247), 1, + STATE(1215), 1, sym_preproc_params, - [39852] = 5, - ACTIONS(2318), 1, + [39918] = 5, + ACTIONS(2397), 1, sym_comment, ACTIONS(2935), 1, anon_sym_LPAREN, - ACTIONS(2981), 1, + ACTIONS(2979), 1, anon_sym_LF, - ACTIONS(2983), 1, + ACTIONS(2981), 1, sym_preproc_arg, - STATE(1248), 1, + STATE(1251), 1, sym_preproc_params, - [39868] = 2, + [39934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 4, + ACTIONS(2983), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39878] = 5, - ACTIONS(2318), 1, + [39944] = 5, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2949), 1, - aux_sym_string_literal_token1, - ACTIONS(2951), 1, - sym_escape_sequence, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(2985), 1, + anon_sym_LF, ACTIONS(2987), 1, + sym_preproc_arg, + STATE(1250), 1, + sym_preproc_params, + [39960] = 5, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(2989), 1, anon_sym_DQUOTE, - STATE(1139), 1, + ACTIONS(2991), 1, + aux_sym_string_literal_token1, + ACTIONS(2993), 1, + sym_escape_sequence, + STATE(1118), 1, aux_sym_string_literal_repeat1, - [39894] = 2, + [39976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 4, + ACTIONS(2995), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39904] = 2, - ACTIONS(3), 1, + [39986] = 5, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2991), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [39914] = 4, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + anon_sym_LF, + ACTIONS(2999), 1, + sym_preproc_arg, + STATE(1243), 1, + sym_preproc_params, + [40002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3001), 1, anon_sym_COMMA, - STATE(1135), 1, + STATE(1136), 1, aux_sym_field_declaration_repeat1, - ACTIONS(2996), 2, + ACTIONS(3004), 2, anon_sym_SEMI, anon_sym_COLON, - [39928] = 2, + [40016] = 5, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(2947), 1, + aux_sym_string_literal_token1, + ACTIONS(2949), 1, + sym_escape_sequence, + ACTIONS(3006), 1, + anon_sym_DQUOTE, + STATE(1140), 1, + aux_sym_string_literal_repeat1, + [40032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 4, + ACTIONS(3008), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [39938] = 5, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3000), 1, - anon_sym_DQUOTE, - ACTIONS(3002), 1, - aux_sym_string_literal_token1, - ACTIONS(3004), 1, - sym_escape_sequence, - STATE(1119), 1, - aux_sym_string_literal_repeat1, - [39954] = 5, + [40042] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - ACTIONS(3006), 1, + ACTIONS(3010), 1, anon_sym_RPAREN, - STATE(1134), 1, + STATE(1128), 1, sym_parameter_list, - [39970] = 5, - ACTIONS(2318), 1, + [40058] = 5, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(3012), 1, anon_sym_DQUOTE, - ACTIONS(3010), 1, + ACTIONS(3014), 1, aux_sym_string_literal_token1, - ACTIONS(3013), 1, + ACTIONS(3017), 1, sym_escape_sequence, - STATE(1139), 1, + STATE(1140), 1, aux_sym_string_literal_repeat1, - [39986] = 5, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3016), 1, - anon_sym_DQUOTE, - ACTIONS(3018), 1, - aux_sym_string_literal_token1, - ACTIONS(3020), 1, - sym_escape_sequence, - STATE(1132), 1, - aux_sym_string_literal_repeat1, - [40002] = 2, + [40074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 4, + ACTIONS(3020), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40012] = 2, + [40084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 4, + ACTIONS(3022), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - [40022] = 2, - ACTIONS(3), 1, + [40094] = 5, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3026), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [40032] = 5, + ACTIONS(3024), 1, + anon_sym_DQUOTE, + ACTIONS(3026), 1, + aux_sym_string_literal_token1, + ACTIONS(3028), 1, + sym_escape_sequence, + STATE(1137), 1, + aux_sym_string_literal_repeat1, + [40110] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2665), 1, anon_sym_LPAREN2, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - ACTIONS(3028), 1, + ACTIONS(3030), 1, anon_sym_RPAREN, - STATE(1134), 1, + STATE(1128), 1, sym_parameter_list, - [40048] = 5, - ACTIONS(2318), 1, + [40126] = 5, + ACTIONS(2397), 1, sym_comment, - ACTIONS(2949), 1, + ACTIONS(2947), 1, aux_sym_string_literal_token1, - ACTIONS(2951), 1, + ACTIONS(2949), 1, sym_escape_sequence, - ACTIONS(3030), 1, + ACTIONS(3032), 1, anon_sym_DQUOTE, - STATE(1139), 1, + STATE(1140), 1, aux_sym_string_literal_repeat1, - [40064] = 5, + [40142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, - sym_identifier, ACTIONS(3034), 1, - anon_sym_COMMA, + sym_identifier, ACTIONS(3036), 1, + anon_sym_COMMA, + ACTIONS(3038), 1, anon_sym_RBRACE, - STATE(1198), 1, + STATE(1202), 1, sym_enumerator, - [40080] = 5, - ACTIONS(2318), 1, + [40158] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 1, - anon_sym_LPAREN, - ACTIONS(3038), 1, - anon_sym_LF, - ACTIONS(3040), 1, - sym_preproc_arg, - STATE(1235), 1, - sym_preproc_params, - [40096] = 5, - ACTIONS(2318), 1, + ACTIONS(3040), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [40168] = 5, + ACTIONS(2397), 1, sym_comment, ACTIONS(2935), 1, anon_sym_LPAREN, @@ -71034,1866 +71094,1926 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_arg, STATE(1231), 1, sym_preproc_params, - [40112] = 4, + [40184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2055), 1, anon_sym_COMMA, - ACTIONS(3046), 1, - anon_sym_SEMI, - STATE(1152), 1, - aux_sym_type_definition_repeat2, - [40125] = 4, + ACTIONS(2057), 1, + anon_sym_RBRACE, + STATE(1167), 1, + aux_sym_initializer_list_repeat1, + [40197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(3046), 1, anon_sym_COMMA, ACTIONS(3048), 1, - anon_sym_SEMI, - STATE(1188), 1, - aux_sym_declaration_repeat1, - [40138] = 4, + anon_sym_RPAREN, + STATE(1158), 1, + aux_sym_parameter_list_repeat1, + [40210] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3050), 1, anon_sym_COMMA, ACTIONS(3052), 1, anon_sym_RBRACK_RBRACK, - STATE(1205), 1, + STATE(1203), 1, aux_sym_attribute_declaration_repeat1, - [40151] = 4, + [40223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 1, + ACTIONS(2747), 1, anon_sym_COMMA, - ACTIONS(3057), 1, + ACTIONS(3054), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1153), 1, aux_sym_type_definition_repeat2, - [40164] = 4, + [40236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(3056), 1, anon_sym_COMMA, ACTIONS(3059), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1153), 1, aux_sym_type_definition_repeat2, - [40177] = 4, + [40249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 1, - anon_sym_LBRACE, + ACTIONS(2747), 1, + anon_sym_COMMA, ACTIONS(3061), 1, + anon_sym_SEMI, + STATE(1153), 1, + aux_sym_type_definition_repeat2, + [40262] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + anon_sym_COMMA, + ACTIONS(3063), 1, + anon_sym_SEMI, + STATE(1153), 1, + aux_sym_type_definition_repeat2, + [40275] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2289), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, sym_identifier, - STATE(887), 1, + STATE(869), 1, sym_enumerator_list, - [40190] = 4, + [40288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 1, + ACTIONS(2747), 1, anon_sym_COMMA, - ACTIONS(3063), 1, + ACTIONS(3067), 1, + anon_sym_SEMI, + STATE(1153), 1, + aux_sym_type_definition_repeat2, + [40301] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 1, + anon_sym_COMMA, + ACTIONS(3069), 1, anon_sym_RPAREN, - STATE(1175), 1, - aux_sym_preproc_argument_list_repeat1, - [40203] = 4, + STATE(1197), 1, + aux_sym_parameter_list_repeat1, + [40314] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(3065), 1, + ACTIONS(3071), 1, anon_sym_SEMI, - STATE(1207), 1, + STATE(1191), 1, aux_sym_declaration_repeat1, - [40216] = 4, + [40327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(3067), 1, + ACTIONS(3073), 1, anon_sym_SEMI, - STATE(1152), 1, - aux_sym_type_definition_repeat2, - [40229] = 4, + STATE(1191), 1, + aux_sym_declaration_repeat1, + [40340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, + ACTIONS(3034), 1, sym_identifier, - ACTIONS(3069), 1, + ACTIONS(3075), 1, anon_sym_RBRACE, - STATE(1263), 1, + STATE(1260), 1, sym_enumerator, - [40242] = 4, + [40353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(3077), 1, anon_sym_COMMA, - ACTIONS(3074), 1, + ACTIONS(3080), 1, anon_sym_RBRACE, - STATE(1159), 1, + STATE(1162), 1, aux_sym_enumerator_list_repeat1, - [40255] = 4, - ACTIONS(2316), 1, + [40366] = 4, + ACTIONS(2395), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3082), 1, anon_sym_LF, - STATE(968), 1, + STATE(962), 1, sym_preproc_argument_list, - [40268] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2663), 1, - anon_sym_COMMA, - ACTIONS(3078), 1, - anon_sym_SEMI, - STATE(1188), 1, - aux_sym_declaration_repeat1, - [40281] = 4, + [40379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(1985), 1, anon_sym_COMMA, - ACTIONS(3080), 1, - anon_sym_SEMI, - STATE(1152), 1, - aux_sym_type_definition_repeat2, - [40294] = 4, - ACTIONS(2316), 1, + ACTIONS(3084), 1, + anon_sym_RPAREN, + STATE(1178), 1, + aux_sym_argument_list_repeat1, + [40392] = 4, + ACTIONS(2395), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(3086), 1, anon_sym_LF, - STATE(968), 1, + STATE(962), 1, sym_preproc_argument_list, - [40307] = 4, + [40405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(2321), 1, anon_sym_COMMA, - ACTIONS(3084), 1, - anon_sym_SEMI, - STATE(1188), 1, - aux_sym_declaration_repeat1, - [40320] = 4, + ACTIONS(3088), 1, + anon_sym_RPAREN, + STATE(1179), 1, + aux_sym_preproc_argument_list_repeat1, + [40418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1522), 1, + anon_sym_RBRACE, + ACTIONS(3090), 1, + anon_sym_COMMA, + STATE(1182), 1, + aux_sym_initializer_list_repeat1, + [40431] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3050), 1, anon_sym_COMMA, - ACTIONS(3086), 1, + ACTIONS(3092), 1, anon_sym_RBRACK_RBRACK, - STATE(1180), 1, + STATE(1183), 1, aux_sym_attribute_declaration_repeat1, - [40333] = 4, + [40444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(3090), 1, - anon_sym_RPAREN, - STATE(1187), 1, - aux_sym_parameter_list_repeat1, - [40346] = 4, - ACTIONS(2316), 1, - anon_sym_LPAREN2, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_LF, - STATE(968), 1, - sym_preproc_argument_list, - [40359] = 4, + ACTIONS(3094), 1, + anon_sym_SEMI, + STATE(1204), 1, + aux_sym_declaration_repeat1, + [40457] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(3094), 1, + ACTIONS(3096), 1, anon_sym_SEMI, - STATE(1161), 1, + STATE(1159), 1, aux_sym_declaration_repeat1, - [40372] = 4, + [40470] = 4, + ACTIONS(2395), 1, + anon_sym_LPAREN2, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3098), 1, + anon_sym_LF, + STATE(962), 1, + sym_preproc_argument_list, + [40483] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3050), 1, anon_sym_COMMA, - ACTIONS(3096), 1, + ACTIONS(3100), 1, anon_sym_RBRACK_RBRACK, - STATE(1193), 1, + STATE(1196), 1, aux_sym_attribute_declaration_repeat1, - [40385] = 4, + [40496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, - anon_sym_LBRACE, - ACTIONS(3098), 1, - sym_identifier, - STATE(890), 1, - sym_field_declaration_list, - [40398] = 4, + ACTIONS(2747), 1, + anon_sym_COMMA, + ACTIONS(3102), 1, + anon_sym_SEMI, + STATE(1153), 1, + aux_sym_type_definition_repeat2, + [40509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(2283), 1, anon_sym_LBRACE, - ACTIONS(3100), 1, + ACTIONS(3104), 1, sym_identifier, - STATE(889), 1, + STATE(864), 1, sym_field_declaration_list, - [40411] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3102), 1, - anon_sym_COMMA, - ACTIONS(3104), 1, - anon_sym_RPAREN, - STATE(1176), 1, - aux_sym_preproc_params_repeat1, - [40424] = 4, + [40522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_RPAREN, + ACTIONS(2283), 1, + anon_sym_LBRACE, ACTIONS(3106), 1, - anon_sym_COMMA, - STATE(1173), 1, - aux_sym_argument_list_repeat1, - [40437] = 4, + sym_identifier, + STATE(883), 1, + sym_field_declaration_list, + [40535] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(3109), 1, + ACTIONS(3108), 1, anon_sym_SEMI, - STATE(1184), 1, + STATE(1188), 1, aux_sym_declaration_repeat1, - [40450] = 4, + [40548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, - anon_sym_RPAREN, - ACTIONS(3111), 1, + ACTIONS(3110), 1, anon_sym_COMMA, - STATE(1175), 1, - aux_sym_preproc_argument_list_repeat1, - [40463] = 4, + ACTIONS(3112), 1, + anon_sym_RPAREN, + STATE(1189), 1, + aux_sym_preproc_params_repeat1, + [40561] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2125), 1, + anon_sym_RPAREN, ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3117), 1, - anon_sym_RPAREN, - STATE(1176), 1, - aux_sym_preproc_params_repeat1, - [40476] = 4, + STATE(1178), 1, + aux_sym_argument_list_repeat1, + [40574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(2499), 1, + anon_sym_RPAREN, + ACTIONS(3117), 1, anon_sym_COMMA, - ACTIONS(3119), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_declaration_repeat1, - [40489] = 4, - ACTIONS(2316), 1, + STATE(1179), 1, + aux_sym_preproc_argument_list_repeat1, + [40587] = 4, + ACTIONS(2395), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3121), 1, + ACTIONS(3120), 1, anon_sym_LF, - STATE(968), 1, + STATE(962), 1, sym_preproc_argument_list, - [40502] = 3, + [40600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(2321), 1, + anon_sym_COMMA, + ACTIONS(3122), 1, anon_sym_RPAREN, - ACTIONS(3123), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [40513] = 4, + STATE(1179), 1, + aux_sym_preproc_argument_list_repeat1, + [40613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 1, + anon_sym_RBRACE, + ACTIONS(3124), 1, + anon_sym_COMMA, + STATE(1182), 1, + aux_sym_initializer_list_repeat1, + [40626] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3050), 1, anon_sym_COMMA, ACTIONS(3127), 1, anon_sym_RBRACK_RBRACK, - STATE(1196), 1, + STATE(1195), 1, aux_sym_attribute_declaration_repeat1, - [40526] = 4, + [40639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 1, + ACTIONS(1985), 1, anon_sym_COMMA, ACTIONS(3129), 1, anon_sym_RPAREN, - STATE(1175), 1, - aux_sym_preproc_argument_list_repeat1, - [40539] = 4, + STATE(1178), 1, + aux_sym_argument_list_repeat1, + [40652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, - anon_sym_COMMA, - ACTIONS(3131), 1, - anon_sym_RPAREN, - STATE(1173), 1, - aux_sym_argument_list_repeat1, - [40552] = 4, + ACTIONS(3131), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [40661] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2663), 1, anon_sym_COMMA, ACTIONS(3133), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1205), 1, aux_sym_declaration_repeat1, - [40565] = 4, + [40674] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2663), 1, anon_sym_COMMA, ACTIONS(3135), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1191), 1, aux_sym_declaration_repeat1, - [40578] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2069), 1, - anon_sym_RBRACE, - ACTIONS(3137), 1, - anon_sym_COMMA, - STATE(1185), 1, - aux_sym_initializer_list_repeat1, - [40591] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_COMMA, - ACTIONS(3140), 1, - anon_sym_SEMI, - STATE(1152), 1, - aux_sym_type_definition_repeat2, - [40604] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3142), 1, - anon_sym_COMMA, - ACTIONS(3145), 1, - anon_sym_RPAREN, - STATE(1187), 1, - aux_sym_parameter_list_repeat1, - [40617] = 4, + [40687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(3150), 1, + ACTIONS(3137), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1191), 1, aux_sym_declaration_repeat1, - [40630] = 4, + [40700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(3139), 1, anon_sym_COMMA, - ACTIONS(3152), 1, + ACTIONS(3142), 1, anon_sym_RPAREN, - STATE(1173), 1, - aux_sym_argument_list_repeat1, - [40643] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_COMMA, - ACTIONS(3154), 1, - anon_sym_SEMI, - STATE(1152), 1, - aux_sym_type_definition_repeat2, - [40656] = 2, + STATE(1189), 1, + aux_sym_preproc_params_repeat1, + [40713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [40665] = 4, + ACTIONS(3146), 1, + anon_sym_RPAREN, + ACTIONS(3144), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [40724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(3148), 1, anon_sym_COMMA, - ACTIONS(3158), 1, + ACTIONS(3151), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1191), 1, aux_sym_declaration_repeat1, - [40678] = 4, + [40737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, + ACTIONS(3153), 1, anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_RBRACK_RBRACK, - STATE(1196), 1, - aux_sym_attribute_declaration_repeat1, - [40691] = 4, + ACTIONS(3155), 1, + anon_sym_RBRACE, + STATE(1162), 1, + aux_sym_enumerator_list_repeat1, + [40750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 1, + ACTIONS(2747), 1, anon_sym_COMMA, - ACTIONS(3164), 1, - anon_sym_RBRACE, - STATE(1159), 1, - aux_sym_enumerator_list_repeat1, - [40704] = 4, + ACTIONS(3157), 1, + anon_sym_SEMI, + STATE(1153), 1, + aux_sym_type_definition_repeat2, + [40763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, + ACTIONS(3034), 1, sym_identifier, - ACTIONS(3164), 1, + ACTIONS(3155), 1, anon_sym_RBRACE, - STATE(1263), 1, + STATE(1260), 1, sym_enumerator, - [40717] = 4, + [40776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 1, + ACTIONS(3159), 1, anon_sym_COMMA, - ACTIONS(3169), 1, + ACTIONS(3162), 1, anon_sym_RBRACK_RBRACK, - STATE(1196), 1, + STATE(1195), 1, aux_sym_attribute_declaration_repeat1, - [40730] = 3, + [40789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, - anon_sym_EQ, - ACTIONS(3171), 2, + ACTIONS(3050), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [40741] = 4, + ACTIONS(3164), 1, + anon_sym_RBRACK_RBRACK, + STATE(1195), 1, + aux_sym_attribute_declaration_repeat1, + [40802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3166), 1, anon_sym_COMMA, - ACTIONS(3177), 1, - anon_sym_RBRACE, - STATE(1194), 1, - aux_sym_enumerator_list_repeat1, - [40754] = 4, + ACTIONS(3169), 1, + anon_sym_RPAREN, + STATE(1197), 1, + aux_sym_parameter_list_repeat1, + [40815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2747), 1, anon_sym_COMMA, - ACTIONS(3179), 1, + ACTIONS(3171), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1153), 1, aux_sym_type_definition_repeat2, - [40767] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [40776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1522), 1, - anon_sym_RBRACE, - ACTIONS(3183), 1, - anon_sym_COMMA, - STATE(1185), 1, - aux_sym_initializer_list_repeat1, - [40789] = 4, + [40828] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(3185), 1, + ACTIONS(3173), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1191), 1, aux_sym_declaration_repeat1, - [40802] = 4, + [40841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(3177), 1, + anon_sym_EQ, + ACTIONS(3175), 2, anon_sym_COMMA, - ACTIONS(3187), 1, + anon_sym_RBRACE, + [40852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + anon_sym_COMMA, + ACTIONS(3179), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1153), 1, aux_sym_type_definition_repeat2, - [40815] = 4, + [40865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 1, + ACTIONS(3181), 1, anon_sym_COMMA, - ACTIONS(3189), 1, - anon_sym_RPAREN, - STATE(1172), 1, - aux_sym_preproc_params_repeat1, - [40828] = 4, + ACTIONS(3183), 1, + anon_sym_RBRACE, + STATE(1192), 1, + aux_sym_enumerator_list_repeat1, + [40878] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3050), 1, anon_sym_COMMA, - ACTIONS(3191), 1, + ACTIONS(3185), 1, anon_sym_RBRACK_RBRACK, - STATE(1196), 1, + STATE(1195), 1, aux_sym_attribute_declaration_repeat1, - [40841] = 4, + [40891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2005), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(2007), 1, - anon_sym_RBRACE, - STATE(1201), 1, - aux_sym_initializer_list_repeat1, - [40854] = 4, + ACTIONS(3187), 1, + anon_sym_SEMI, + STATE(1191), 1, + aux_sym_declaration_repeat1, + [40904] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(3193), 1, + ACTIONS(3189), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1191), 1, aux_sym_declaration_repeat1, - [40867] = 4, + [40917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - ACTIONS(3195), 1, - anon_sym_RPAREN, - STATE(1166), 1, - aux_sym_parameter_list_repeat1, - [40880] = 3, + ACTIONS(3191), 1, + anon_sym_SEMI, + STATE(1191), 1, + aux_sym_declaration_repeat1, + [40930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, - sym_identifier, - STATE(1263), 1, - sym_enumerator, - [40890] = 2, + ACTIONS(3193), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [40939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 2, + ACTIONS(3110), 1, anon_sym_COMMA, + ACTIONS(3195), 1, anon_sym_RPAREN, - [40898] = 3, + STATE(1177), 1, + aux_sym_preproc_params_repeat1, + [40952] = 2, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3197), 2, + anon_sym_LF, + sym_preproc_arg, + [40960] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(1384), 1, + STATE(1368), 1, sym_parenthesized_expression, - [40908] = 2, - ACTIONS(2318), 1, + [40970] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3201), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40978] = 3, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3203), 1, anon_sym_LF, + ACTIONS(3205), 1, sym_preproc_arg, - [40916] = 2, + [40988] = 2, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3207), 2, + anon_sym_LF, + sym_preproc_arg, + [40996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2043), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [40924] = 3, + ACTIONS(3034), 1, + sym_identifier, + STATE(1260), 1, + sym_enumerator, + [41006] = 3, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3209), 1, + anon_sym_LF, + ACTIONS(3211), 1, + sym_preproc_arg, + [41016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_LBRACE, - STATE(269), 1, - sym_compound_statement, - [40934] = 2, + ACTIONS(3199), 1, + anon_sym_LPAREN2, + STATE(1276), 1, + sym_parenthesized_expression, + [41026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [40942] = 3, + ACTIONS(2053), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [41034] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(1323), 1, + STATE(1326), 1, sym_parenthesized_expression, - [40952] = 3, + [41044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3213), 1, sym_identifier, - STATE(1165), 1, + STATE(1168), 1, sym_attribute, - [40962] = 3, + [41054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3162), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [41062] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(1249), 1, + STATE(1252), 1, sym_parenthesized_expression, - [40972] = 2, - ACTIONS(2318), 1, + [41072] = 2, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3205), 2, + ACTIONS(3215), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [40980] = 3, - ACTIONS(2318), 1, + [41080] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(3217), 1, anon_sym_LF, - ACTIONS(3209), 1, + ACTIONS(3219), 1, sym_preproc_arg, - [40990] = 3, + [41090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, - sym_identifier, - STATE(1215), 1, - sym_attribute, - [41000] = 3, + ACTIONS(3169), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3221), 1, anon_sym_LPAREN2, - STATE(266), 1, + STATE(151), 1, sym_parenthesized_expression, - [41010] = 2, + [41108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [41018] = 3, + ACTIONS(3213), 1, + sym_identifier, + STATE(1220), 1, + sym_attribute, + [41118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3221), 1, anon_sym_LPAREN2, - STATE(261), 1, + STATE(149), 1, sym_parenthesized_expression, - [41028] = 3, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3215), 1, - anon_sym_LF, - ACTIONS(3217), 1, - sym_preproc_arg, - [41038] = 2, + [41128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 2, + ACTIONS(3223), 2, anon_sym_COMMA, - anon_sym_SEMI, - [41046] = 2, + anon_sym_RBRACK_RBRACK, + [41136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 2, + ACTIONS(2135), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [41054] = 3, + anon_sym_SEMI, + [41144] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(1373), 1, + STATE(1379), 1, sym_parenthesized_expression, - [41064] = 2, - ACTIONS(3), 1, + [41154] = 3, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3145), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41072] = 2, + ACTIONS(3225), 1, + anon_sym_LF, + ACTIONS(3227), 1, + sym_preproc_arg, + [41164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 2, + ACTIONS(2745), 2, anon_sym_COMMA, anon_sym_SEMI, - [41080] = 3, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3219), 1, - anon_sym_LF, - ACTIONS(3221), 1, - sym_preproc_arg, - [41090] = 2, + [41172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 2, + ACTIONS(3142), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [41098] = 3, + anon_sym_RPAREN, + [41180] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(1239), 1, + STATE(1242), 1, sym_parenthesized_expression, - [41108] = 2, + [41190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [41116] = 3, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3225), 1, - anon_sym_LF, - ACTIONS(3227), 1, - sym_preproc_arg, - [41126] = 2, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3229), 2, - anon_sym_LF, - sym_preproc_arg, - [41134] = 2, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3231), 2, - anon_sym_LF, - sym_preproc_arg, - [41142] = 2, + ACTIONS(2183), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 2, + ACTIONS(2161), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [41150] = 3, + anon_sym_RBRACE, + [41206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - anon_sym_LBRACE, - STATE(222), 1, - sym_compound_statement, - [41160] = 3, + ACTIONS(3229), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [41214] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, anon_sym_LPAREN2, - STATE(1356), 1, + STATE(1362), 1, sym_argument_list, - [41170] = 3, - ACTIONS(3), 1, + [41224] = 2, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3199), 1, - anon_sym_LPAREN2, - STATE(1290), 1, - sym_parenthesized_expression, - [41180] = 3, + ACTIONS(3231), 2, + anon_sym_LF, + sym_preproc_arg, + [41232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - STATE(228), 1, + STATE(301), 1, sym_compound_statement, - [41190] = 2, - ACTIONS(2318), 1, + [41242] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3233), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [41198] = 3, + [41250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 1, + anon_sym_LBRACE, + STATE(133), 1, + sym_compound_statement, + [41260] = 3, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3235), 1, + anon_sym_LF, + ACTIONS(3237), 1, + sym_preproc_arg, + [41270] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(1214), 1, + STATE(1240), 1, sym_parenthesized_expression, - [41208] = 3, + [41280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, - sym_identifier, - STATE(1151), 1, - sym_attribute, - [41218] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(229), 1, + sym_compound_statement, + [41290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN2, - STATE(1378), 1, - sym_argument_list, - [41228] = 3, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3235), 1, - anon_sym_LF, - ACTIONS(3237), 1, - sym_preproc_arg, - [41238] = 3, - ACTIONS(2318), 1, + ACTIONS(3213), 1, + sym_identifier, + STATE(1151), 1, + sym_attribute, + [41300] = 3, + ACTIONS(2397), 1, sym_comment, ACTIONS(3239), 1, anon_sym_LF, ACTIONS(3241), 1, sym_preproc_arg, - [41248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - anon_sym_LBRACE, - STATE(69), 1, - sym_compound_statement, - [41258] = 3, + [41310] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3243), 1, sym_identifier, ACTIONS(3245), 1, anon_sym_LPAREN2, - [41268] = 3, + [41320] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN2, + STATE(1384), 1, + sym_argument_list, + [41330] = 3, + ACTIONS(2397), 1, + sym_comment, ACTIONS(3247), 1, - sym_identifier, + anon_sym_LF, ACTIONS(3249), 1, - anon_sym_LPAREN2, - [41278] = 3, - ACTIONS(2318), 1, + sym_preproc_arg, + [41340] = 3, + ACTIONS(2397), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LF, ACTIONS(3253), 1, sym_preproc_arg, - [41288] = 3, + [41350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, - anon_sym_LPAREN2, - STATE(186), 1, - sym_parenthesized_expression, - [41298] = 3, - ACTIONS(2318), 1, + ACTIONS(115), 1, + anon_sym_LBRACE, + STATE(72), 1, + sym_compound_statement, + [41360] = 3, + ACTIONS(2397), 1, sym_comment, ACTIONS(3255), 1, anon_sym_LF, ACTIONS(3257), 1, sym_preproc_arg, - [41308] = 3, + [41370] = 3, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3259), 1, + anon_sym_LF, + ACTIONS(3261), 1, + sym_preproc_arg, + [41380] = 3, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LF, + ACTIONS(3265), 1, + sym_preproc_arg, + [41390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3267), 1, + sym_identifier, + ACTIONS(3269), 1, anon_sym_LPAREN2, - STATE(135), 1, - sym_parenthesized_expression, - [41318] = 2, - ACTIONS(2318), 1, + [41400] = 2, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3271), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [41326] = 3, + [41408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3221), 1, anon_sym_LPAREN2, - STATE(309), 1, + STATE(160), 1, sym_parenthesized_expression, - [41336] = 3, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3261), 1, - anon_sym_LF, - ACTIONS(3263), 1, - sym_preproc_arg, - [41346] = 3, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3265), 1, - anon_sym_LF, - ACTIONS(3267), 1, - sym_preproc_arg, - [41356] = 3, + [41418] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, anon_sym_LPAREN2, - STATE(1242), 1, + STATE(1245), 1, sym_parenthesized_expression, - [41366] = 3, - ACTIONS(2318), 1, + [41428] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3080), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41436] = 3, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3273), 1, + anon_sym_LF, + ACTIONS(3275), 1, + sym_preproc_arg, + [41446] = 3, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3277), 1, anon_sym_LF, - ACTIONS(3271), 1, + ACTIONS(3279), 1, sym_preproc_arg, - [41376] = 3, + [41456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3281), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [41464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3221), 1, anon_sym_LPAREN2, - STATE(133), 1, + STATE(258), 1, sym_parenthesized_expression, - [41386] = 2, + [41474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41394] = 2, + ACTIONS(3221), 1, + anon_sym_LPAREN2, + STATE(166), 1, + sym_parenthesized_expression, + [41484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [41402] = 3, + ACTIONS(3221), 1, + anon_sym_LPAREN2, + STATE(260), 1, + sym_parenthesized_expression, + [41494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3221), 1, anon_sym_LPAREN2, - STATE(295), 1, + STATE(240), 1, sym_parenthesized_expression, - [41412] = 3, + [41504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3213), 1, sym_identifier, - STATE(1169), 1, + STATE(1172), 1, sym_attribute, - [41422] = 3, + [41514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3221), 1, anon_sym_LPAREN2, - STATE(189), 1, + STATE(243), 1, sym_parenthesized_expression, - [41432] = 3, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3275), 1, - anon_sym_LF, - ACTIONS(3277), 1, - sym_preproc_arg, - [41442] = 3, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3279), 1, - anon_sym_LF, - ACTIONS(3281), 1, - sym_preproc_arg, - [41452] = 3, - ACTIONS(2318), 1, + [41524] = 3, + ACTIONS(2397), 1, sym_comment, ACTIONS(3283), 1, anon_sym_LF, ACTIONS(3285), 1, sym_preproc_arg, - [41462] = 2, - ACTIONS(2318), 1, + [41534] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3287), 1, - anon_sym_LF, - [41469] = 2, + sym_identifier, + [41541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3289), 1, anon_sym_SEMI, - [41476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2119), 1, - anon_sym_RPAREN, - [41483] = 2, + [41548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(2085), 1, anon_sym_RPAREN, - [41490] = 2, + [41555] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3291), 1, - anon_sym_RPAREN, - [41497] = 2, + aux_sym_preproc_if_token2, + [41562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(2061), 1, anon_sym_RPAREN, - [41504] = 2, + [41569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3293), 1, - sym_identifier, - [41511] = 2, + anon_sym_SEMI, + [41576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(2071), 1, anon_sym_RPAREN, - [41518] = 2, + [41583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, - anon_sym_RBRACE, - [41525] = 2, + ACTIONS(3295), 1, + sym_identifier, + [41590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_RPAREN, - [41532] = 2, + ACTIONS(2057), 1, + anon_sym_RBRACE, + [41597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 1, + ACTIONS(2067), 1, anon_sym_SEMI, - [41539] = 2, + [41604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2117), 1, anon_sym_RPAREN, - [41546] = 2, + [41611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 1, + ACTIONS(3297), 1, anon_sym_SEMI, - [41553] = 2, + [41618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, - anon_sym_SQUOTE, - [41560] = 2, + ACTIONS(2129), 1, + anon_sym_RPAREN, + [41625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(2065), 1, + anon_sym_RPAREN, + [41632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2145), 1, anon_sym_RPAREN, - [41567] = 2, + [41639] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3299), 1, - anon_sym_COLON, - [41574] = 2, + anon_sym_SQUOTE, + [41646] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3301), 1, aux_sym_preproc_if_token2, - [41581] = 2, - ACTIONS(2318), 1, + [41653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 1, + anon_sym_RPAREN, + [41660] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3303), 1, - anon_sym_LF, - [41588] = 2, - ACTIONS(2318), 1, + aux_sym_preproc_if_token2, + [41667] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3305), 1, - anon_sym_LF, - [41595] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [41674] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3307), 1, - anon_sym_SEMI, - [41602] = 2, - ACTIONS(2318), 1, + anon_sym_LF, + [41681] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3309), 1, anon_sym_LF, - [41609] = 2, + [41688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3311), 1, aux_sym_preproc_if_token2, - [41616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 1, - anon_sym_RPAREN, - [41623] = 2, - ACTIONS(2318), 1, + [41695] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3313), 1, anon_sym_LF, - [41630] = 2, - ACTIONS(2318), 1, + [41702] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3315), 1, anon_sym_LF, - [41637] = 2, + [41709] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(2177), 1, + anon_sym_RPAREN, + [41716] = 2, + ACTIONS(2397), 1, + sym_comment, ACTIONS(3317), 1, - aux_sym_preproc_if_token2, - [41644] = 2, - ACTIONS(2318), 1, + anon_sym_LF, + [41723] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3319), 1, anon_sym_LF, - [41651] = 2, - ACTIONS(2318), 1, + [41730] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3321), 1, - anon_sym_LF, - [41658] = 2, - ACTIONS(2318), 1, + aux_sym_preproc_if_token2, + [41737] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3323), 1, anon_sym_LF, - [41665] = 2, - ACTIONS(2318), 1, + [41744] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3325), 1, anon_sym_LF, - [41672] = 2, + [41751] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3327), 1, aux_sym_preproc_if_token2, - [41679] = 2, - ACTIONS(2318), 1, + [41758] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LF, - [41686] = 2, - ACTIONS(2318), 1, + [41765] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3331), 1, anon_sym_LF, - [41693] = 2, + [41772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3333), 1, - aux_sym_preproc_if_token2, - [41700] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [41779] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3335), 1, - sym_identifier, - [41707] = 2, + anon_sym_LF, + [41786] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(2123), 1, + anon_sym_RPAREN, + [41793] = 2, + ACTIONS(2397), 1, + sym_comment, ACTIONS(3337), 1, - sym_identifier, - [41714] = 2, + anon_sym_LF, + [41800] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3339), 1, - anon_sym_SEMI, - [41721] = 2, - ACTIONS(3), 1, + sym_identifier, + [41807] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3341), 1, - aux_sym_preproc_if_token2, - [41728] = 2, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3343), 1, anon_sym_LF, - [41735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_RPAREN, - [41742] = 2, + [41814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_RPAREN, - [41749] = 2, + ACTIONS(3343), 1, + aux_sym_preproc_if_token2, + [41821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3345), 1, - sym_identifier, - [41756] = 2, + anon_sym_SEMI, + [41828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, + ACTIONS(2115), 1, anon_sym_SEMI, - [41763] = 2, + [41835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - aux_sym_preproc_if_token2, - [41770] = 2, + ACTIONS(2143), 1, + anon_sym_RPAREN, + [41842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 1, - anon_sym_SEMI, - [41777] = 2, + ACTIONS(3347), 1, + sym_identifier, + [41849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(2147), 1, anon_sym_RPAREN, - [41784] = 2, - ACTIONS(2318), 1, + [41856] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(2153), 1, + anon_sym_SEMI, + [41863] = 2, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3349), 1, anon_sym_LF, - [41791] = 2, - ACTIONS(2318), 1, + [41870] = 2, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(3098), 1, anon_sym_LF, - [41798] = 2, - ACTIONS(2318), 1, + [41877] = 2, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3121), 1, + ACTIONS(3120), 1, anon_sym_LF, - [41805] = 2, + [41884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2151), 1, + ACTIONS(2175), 1, anon_sym_SEMI, - [41812] = 2, + [41891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3351), 1, anon_sym_SEMI, - [41819] = 2, + [41898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 1, + ACTIONS(2075), 1, + anon_sym_RPAREN, + [41905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2155), 1, anon_sym_SEMI, - [41826] = 2, + [41912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(2097), 1, anon_sym_SEMI, - [41833] = 2, + [41919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 1, + ACTIONS(3353), 1, anon_sym_SEMI, - [41840] = 2, + [41926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_COLON, - [41847] = 2, + ACTIONS(3355), 1, + anon_sym_SEMI, + [41933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 1, + ACTIONS(3357), 1, anon_sym_STAR, - [41854] = 2, + [41940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 1, + ACTIONS(3359), 1, anon_sym_SEMI, - [41861] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2137), 1, - anon_sym_RPAREN, - [41868] = 2, + [41947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3365), 1, - aux_sym_preproc_if_token2, - [41875] = 2, + ACTIONS(3361), 1, + anon_sym_SEMI, + [41954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3363), 1, aux_sym_preproc_if_token2, - [41882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2139), 1, - anon_sym_RPAREN, - [41889] = 2, + [41961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, - anon_sym_RPAREN, - [41896] = 2, + ACTIONS(3365), 1, + anon_sym_COLON, + [41968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(2079), 1, anon_sym_RPAREN, - [41903] = 2, + [41975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_RPAREN, - [41910] = 2, + ACTIONS(3367), 1, + anon_sym_SEMI, + [41982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3369), 1, - anon_sym_RPAREN, - [41917] = 2, + anon_sym_SEMI, + [41989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3371), 1, - sym_identifier, - [41924] = 2, + aux_sym_preproc_if_token2, + [41996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(2095), 1, anon_sym_SEMI, - [41931] = 2, + [42003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3373), 1, aux_sym_preproc_if_token2, - [41938] = 2, + [42010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3377), 1, + ACTIONS(3375), 1, sym_identifier, - [41945] = 2, + [42017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2107), 1, + ACTIONS(3377), 1, + aux_sym_preproc_if_token2, + [42024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2119), 1, anon_sym_RPAREN, - [41952] = 2, + [42031] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3379), 1, - anon_sym_SEMI, - [41959] = 2, + sym_identifier, + [42038] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3381), 1, - aux_sym_preproc_if_token2, - [41966] = 2, + anon_sym_SEMI, + [42045] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3383), 1, anon_sym_RPAREN, - [41973] = 2, + [42052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2059), 1, + anon_sym_RPAREN, + [42059] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3385), 1, - aux_sym_preproc_if_token2, - [41980] = 2, + anon_sym_RPAREN, + [42066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_RPAREN, + [42073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2111), 1, + anon_sym_RPAREN, + [42080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 1, + anon_sym_SEMI, + [42087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3387), 1, - aux_sym_preproc_if_token2, - [41987] = 2, + anon_sym_SEMI, + [42094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2105), 1, + anon_sym_SEMI, + [42101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3389), 1, aux_sym_preproc_if_token2, - [41994] = 2, + [42108] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3391), 1, aux_sym_preproc_if_token2, - [42001] = 2, + [42115] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3393), 1, - aux_sym_preproc_if_token2, - [42008] = 2, + anon_sym_RPAREN, + [42122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 1, - anon_sym_RPAREN, - [42015] = 2, - ACTIONS(2318), 1, + ACTIONS(2169), 1, + anon_sym_SEMI, + [42129] = 2, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(3395), 1, anon_sym_LF, - [42022] = 2, + [42136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym_RPAREN, - [42029] = 2, + ACTIONS(3397), 1, + aux_sym_preproc_if_token2, + [42143] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3399), 1, aux_sym_preproc_if_token2, - [42036] = 2, + [42150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, + ACTIONS(2141), 1, + anon_sym_RPAREN, + [42157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2159), 1, anon_sym_RPAREN, - [42043] = 2, + [42164] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3401), 1, - aux_sym_preproc_if_token2, - [42050] = 2, + sym_identifier, + [42171] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3403), 1, - sym_identifier, - [42057] = 2, + anon_sym_STAR, + [42178] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3405), 1, - anon_sym_STAR, - [42064] = 2, + aux_sym_preproc_if_token2, + [42185] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3407), 1, - anon_sym_SEMI, - [42071] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [42192] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3409), 1, - anon_sym_RPAREN, - [42078] = 2, + anon_sym_LF, + [42199] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3411), 1, - aux_sym_preproc_if_token2, - [42085] = 2, + anon_sym_RPAREN, + [42206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 1, - anon_sym_RPAREN, - [42092] = 2, + ACTIONS(2137), 1, + anon_sym_SEMI, + [42213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, + ACTIONS(3413), 1, anon_sym_SEMI, - [42099] = 2, - ACTIONS(2318), 1, + [42220] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3415), 1, - anon_sym_LF, - [42106] = 2, + sym_identifier, + [42227] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3417), 1, - sym_identifier, - [42113] = 2, + aux_sym_preproc_if_token2, + [42234] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3419), 1, - aux_sym_preproc_if_token2, - [42120] = 2, + sym_identifier, + [42241] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3421), 1, sym_identifier, - [42127] = 2, + [42248] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3423), 1, - sym_identifier, - [42134] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, aux_sym_preproc_if_token2, - [42141] = 2, + [42255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3183), 1, anon_sym_RBRACE, - [42148] = 2, + [42262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_RPAREN, - [42155] = 2, + ACTIONS(3425), 1, + aux_sym_preproc_if_token2, + [42269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 1, - anon_sym_RPAREN, - [42162] = 2, + ACTIONS(3427), 1, + anon_sym_SEMI, + [42276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(3429), 1, anon_sym_RPAREN, - [42169] = 2, + [42283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, sym_identifier, - [42176] = 2, + [42290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3433), 1, anon_sym_SEMI, - [42183] = 2, + [42297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, anon_sym_SEMI, - [42190] = 2, + [42304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 1, + ACTIONS(2133), 1, anon_sym_RPAREN, - [42197] = 2, + [42311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3435), 1, - aux_sym_preproc_if_token2, - [42204] = 2, + ACTIONS(2093), 1, + anon_sym_RPAREN, + [42318] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3437), 1, sym_identifier, - [42211] = 2, + [42325] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3439), 1, anon_sym_RPAREN, - [42218] = 2, + [42332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2065), 1, + ACTIONS(2099), 1, anon_sym_RPAREN, - [42225] = 2, + [42339] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3441), 1, anon_sym_STAR, - [42232] = 2, + [42346] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3443), 1, sym_identifier, - [42239] = 2, + [42353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_RPAREN, + [42360] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3445), 1, - aux_sym_preproc_if_token2, - [42246] = 2, + anon_sym_RPAREN, + [42367] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3447), 1, - aux_sym_preproc_if_token2, - [42253] = 2, + anon_sym_SEMI, + [42374] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3449), 1, - anon_sym_SEMI, - [42260] = 2, + aux_sym_preproc_if_token2, + [42381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_RPAREN, - [42267] = 2, + ACTIONS(3451), 1, + aux_sym_preproc_if_token2, + [42388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(2107), 1, anon_sym_SEMI, - [42274] = 2, + [42395] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3453), 1, aux_sym_preproc_if_token2, - [42281] = 2, + [42402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2109), 1, + anon_sym_SEMI, + [42409] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3455), 1, sym_identifier, - [42288] = 2, - ACTIONS(2318), 1, + [42416] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3457), 1, - anon_sym_LF, - [42295] = 2, - ACTIONS(2318), 1, + aux_sym_preproc_if_token2, + [42423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_SEMI, + [42430] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3459), 1, anon_sym_LF, - [42302] = 2, + [42437] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3461), 1, sym_identifier, - [42309] = 2, + [42444] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3463), 1, sym_identifier, - [42316] = 2, + [42451] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3465), 1, - anon_sym_RPAREN, - [42323] = 2, + aux_sym_preproc_if_token2, + [42458] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3467), 1, aux_sym_preproc_if_token2, - [42330] = 2, + [42465] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3469), 1, sym_identifier, - [42337] = 2, + [42472] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3471), 1, sym_identifier, - [42344] = 2, - ACTIONS(3), 1, + [42479] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3473), 1, - aux_sym_preproc_if_token2, - [42351] = 2, + anon_sym_LF, + [42486] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3475), 1, anon_sym_STAR, - [42358] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2145), 1, - anon_sym_RPAREN, - [42365] = 2, + [42493] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, - anon_sym_SEMI, - [42372] = 2, + anon_sym_RPAREN, + [42500] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3479), 1, - anon_sym_SQUOTE, - [42379] = 2, - ACTIONS(2318), 1, + aux_sym_preproc_if_token2, + [42507] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3481), 1, - anon_sym_LF, - [42386] = 2, + anon_sym_SQUOTE, + [42514] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3483), 1, + aux_sym_preproc_if_token2, + [42521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3485), 1, anon_sym_SEMI, - [42393] = 2, + [42528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 1, + ACTIONS(2073), 1, anon_sym_SEMI, - [42400] = 2, + [42535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 1, + ACTIONS(3487), 1, anon_sym_while, - [42407] = 2, + [42542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - aux_sym_preproc_if_token2, - [42414] = 2, + ACTIONS(2127), 1, + anon_sym_SEMI, + [42549] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3489), 1, - anon_sym_SQUOTE, - [42421] = 2, + aux_sym_preproc_if_token2, + [42556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, + ACTIONS(2139), 1, anon_sym_SEMI, - [42428] = 2, + [42563] = 2, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3491), 1, + anon_sym_LF, + [42570] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3493), 1, - sym_identifier, - [42435] = 2, + anon_sym_SQUOTE, + [42577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2121), 1, + anon_sym_SEMI, + [42584] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3495), 1, sym_identifier, - [42442] = 2, + [42591] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3497), 1, sym_identifier, - [42449] = 2, + [42598] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3499), 1, - anon_sym_RPAREN, - [42456] = 2, + sym_identifier, + [42605] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3501), 1, + anon_sym_SEMI, + [42612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3503), 1, sym_identifier, - [42463] = 2, + [42619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, + ACTIONS(2083), 1, anon_sym_SEMI, - [42470] = 2, + [42626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 1, + ACTIONS(3505), 1, aux_sym_preproc_if_token2, - [42477] = 2, + [42633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 1, - aux_sym_preproc_if_token2, - [42484] = 2, + ACTIONS(2171), 1, + anon_sym_RPAREN, + [42640] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3507), 1, anon_sym_RPAREN, - [42491] = 2, + [42647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2167), 1, anon_sym_RPAREN, - [42498] = 2, - ACTIONS(2318), 1, + [42654] = 2, + ACTIONS(2397), 1, sym_comment, ACTIONS(3509), 1, anon_sym_LF, - [42505] = 2, + [42661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3511), 1, anon_sym_RPAREN, - [42512] = 2, - ACTIONS(1641), 1, - anon_sym_LF, - ACTIONS(2318), 1, - sym_comment, - [42519] = 2, + [42668] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3513), 1, - anon_sym_while, - [42526] = 2, + aux_sym_preproc_if_token2, + [42675] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3515), 1, + anon_sym_while, + [42682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3517), 1, aux_sym_preproc_if_token2, - [42533] = 2, - ACTIONS(1645), 1, - anon_sym_LF, - ACTIONS(2318), 1, + [42689] = 2, + ACTIONS(3), 1, sym_comment, - [42540] = 2, - ACTIONS(2318), 1, + ACTIONS(3519), 1, + anon_sym_RPAREN, + [42696] = 2, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(3086), 1, anon_sym_LF, - [42547] = 2, + [42703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(2157), 1, anon_sym_SEMI, - [42554] = 2, + [42710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2151), 1, anon_sym_SEMI, - [42561] = 2, + [42717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 1, + ACTIONS(3521), 1, ts_builtin_sym_end, - [42568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3519), 1, - anon_sym_RPAREN, - [42575] = 2, - ACTIONS(2318), 1, + [42724] = 2, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3523), 1, anon_sym_LF, - [42582] = 2, - ACTIONS(3), 1, + [42731] = 2, + ACTIONS(1635), 1, + anon_sym_LF, + ACTIONS(2397), 1, sym_comment, - ACTIONS(3523), 1, - sym_identifier, - [42589] = 2, + [42738] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3525), 1, - anon_sym_SEMI, - [42596] = 2, + sym_identifier, + [42745] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3527), 1, - anon_sym_while, - [42603] = 2, + anon_sym_SEMI, + [42752] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3529), 1, - anon_sym_SEMI, - [42610] = 2, + anon_sym_while, + [42759] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3531), 1, - anon_sym_LPAREN2, - [42617] = 2, + anon_sym_SEMI, + [42766] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3533), 1, - anon_sym_COLON, - [42624] = 2, + anon_sym_LPAREN2, + [42773] = 2, + ACTIONS(2397), 1, + sym_comment, + ACTIONS(3082), 1, + anon_sym_LF, + [42780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 1, + ACTIONS(2113), 1, anon_sym_SEMI, - [42631] = 2, + [42787] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3535), 1, anon_sym_COLON, - [42638] = 2, - ACTIONS(2318), 1, - sym_comment, - ACTIONS(3076), 1, - anon_sym_LF, - [42645] = 2, + [42794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 1, + ACTIONS(2069), 1, anon_sym_SEMI, - [42652] = 2, + [42801] = 2, + ACTIONS(1645), 1, + anon_sym_LF, + ACTIONS(2397), 1, + sym_comment, + [42808] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3537), 1, - aux_sym_preproc_if_token2, - [42659] = 2, + anon_sym_COLON, + [42815] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3539), 1, anon_sym_while, - [42666] = 2, + [42822] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3541), 1, - anon_sym_SEMI, - [42673] = 2, + anon_sym_RPAREN, + [42829] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3543), 1, anon_sym_SEMI, - [42680] = 2, + [42836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, + ACTIONS(2081), 1, anon_sym_SEMI, - [42687] = 2, + [42843] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3545), 1, anon_sym_LPAREN2, - [42694] = 2, + [42850] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3547), 1, anon_sym_SEMI, - [42701] = 2, + [42857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3549), 1, anon_sym_LPAREN2, - [42708] = 2, + [42864] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3551), 1, anon_sym_LPAREN2, - [42715] = 2, + [42871] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3553), 1, - anon_sym_SEMI, - [42722] = 2, + anon_sym_COLON, + [42878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3555), 1, anon_sym_LPAREN2, - [42729] = 2, + [42885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3557), 1, sym_identifier, - [42736] = 2, + [42892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3559), 1, @@ -72902,8 +73022,8 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(382)] = 0, - [SMALL_STATE(383)] = 107, - [SMALL_STATE(384)] = 178, + [SMALL_STATE(383)] = 71, + [SMALL_STATE(384)] = 142, [SMALL_STATE(385)] = 249, [SMALL_STATE(386)] = 321, [SMALL_STATE(387)] = 440, @@ -72921,16 +73041,16 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(399)] = 1736, [SMALL_STATE(400)] = 1844, [SMALL_STATE(401)] = 1952, - [SMALL_STATE(402)] = 2029, - [SMALL_STATE(403)] = 2104, - [SMALL_STATE(404)] = 2181, - [SMALL_STATE(405)] = 2256, - [SMALL_STATE(406)] = 2333, - [SMALL_STATE(407)] = 2408, - [SMALL_STATE(408)] = 2485, + [SMALL_STATE(402)] = 2027, + [SMALL_STATE(403)] = 2102, + [SMALL_STATE(404)] = 2177, + [SMALL_STATE(405)] = 2254, + [SMALL_STATE(406)] = 2331, + [SMALL_STATE(407)] = 2406, + [SMALL_STATE(408)] = 2483, [SMALL_STATE(409)] = 2560, - [SMALL_STATE(410)] = 2660, - [SMALL_STATE(411)] = 2760, + [SMALL_STATE(410)] = 2632, + [SMALL_STATE(411)] = 2732, [SMALL_STATE(412)] = 2832, [SMALL_STATE(413)] = 2929, [SMALL_STATE(414)] = 3026, @@ -72942,23 +73062,23 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(420)] = 3610, [SMALL_STATE(421)] = 3708, [SMALL_STATE(422)] = 3799, - [SMALL_STATE(423)] = 3860, + [SMALL_STATE(423)] = 3890, [SMALL_STATE(424)] = 3951, - [SMALL_STATE(425)] = 4054, - [SMALL_STATE(426)] = 4145, - [SMALL_STATE(427)] = 4236, - [SMALL_STATE(428)] = 4327, - [SMALL_STATE(429)] = 4418, - [SMALL_STATE(430)] = 4509, - [SMALL_STATE(431)] = 4570, - [SMALL_STATE(432)] = 4661, - [SMALL_STATE(433)] = 4752, - [SMALL_STATE(434)] = 4843, + [SMALL_STATE(425)] = 4042, + [SMALL_STATE(426)] = 4133, + [SMALL_STATE(427)] = 4224, + [SMALL_STATE(428)] = 4285, + [SMALL_STATE(429)] = 4376, + [SMALL_STATE(430)] = 4467, + [SMALL_STATE(431)] = 4558, + [SMALL_STATE(432)] = 4649, + [SMALL_STATE(433)] = 4740, + [SMALL_STATE(434)] = 4801, [SMALL_STATE(435)] = 4904, [SMALL_STATE(436)] = 4995, - [SMALL_STATE(437)] = 5086, - [SMALL_STATE(438)] = 5177, - [SMALL_STATE(439)] = 5268, + [SMALL_STATE(437)] = 5050, + [SMALL_STATE(438)] = 5141, + [SMALL_STATE(439)] = 5232, [SMALL_STATE(440)] = 5323, [SMALL_STATE(441)] = 5378, [SMALL_STATE(442)] = 5460, @@ -72995,984 +73115,996 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(473)] = 8002, [SMALL_STATE(474)] = 8084, [SMALL_STATE(475)] = 8166, - [SMALL_STATE(476)] = 8245, - [SMALL_STATE(477)] = 8324, - [SMALL_STATE(478)] = 8403, - [SMALL_STATE(479)] = 8482, - [SMALL_STATE(480)] = 8533, - [SMALL_STATE(481)] = 8612, - [SMALL_STATE(482)] = 8691, - [SMALL_STATE(483)] = 8770, - [SMALL_STATE(484)] = 8849, - [SMALL_STATE(485)] = 8928, - [SMALL_STATE(486)] = 9007, - [SMALL_STATE(487)] = 9086, - [SMALL_STATE(488)] = 9165, - [SMALL_STATE(489)] = 9244, - [SMALL_STATE(490)] = 9323, - [SMALL_STATE(491)] = 9402, - [SMALL_STATE(492)] = 9481, - [SMALL_STATE(493)] = 9560, - [SMALL_STATE(494)] = 9639, - [SMALL_STATE(495)] = 9718, - [SMALL_STATE(496)] = 9797, - [SMALL_STATE(497)] = 9876, - [SMALL_STATE(498)] = 9955, - [SMALL_STATE(499)] = 10034, - [SMALL_STATE(500)] = 10113, - [SMALL_STATE(501)] = 10192, - [SMALL_STATE(502)] = 10271, - [SMALL_STATE(503)] = 10350, - [SMALL_STATE(504)] = 10434, - [SMALL_STATE(505)] = 10510, - [SMALL_STATE(506)] = 10568, - [SMALL_STATE(507)] = 10644, - [SMALL_STATE(508)] = 10704, - [SMALL_STATE(509)] = 10780, - [SMALL_STATE(510)] = 10856, - [SMALL_STATE(511)] = 10932, - [SMALL_STATE(512)] = 11008, - [SMALL_STATE(513)] = 11084, - [SMALL_STATE(514)] = 11160, - [SMALL_STATE(515)] = 11236, - [SMALL_STATE(516)] = 11286, - [SMALL_STATE(517)] = 11362, - [SMALL_STATE(518)] = 11438, - [SMALL_STATE(519)] = 11514, - [SMALL_STATE(520)] = 11590, - [SMALL_STATE(521)] = 11666, - [SMALL_STATE(522)] = 11742, - [SMALL_STATE(523)] = 11818, - [SMALL_STATE(524)] = 11894, - [SMALL_STATE(525)] = 11970, - [SMALL_STATE(526)] = 12046, - [SMALL_STATE(527)] = 12122, - [SMALL_STATE(528)] = 12198, - [SMALL_STATE(529)] = 12274, - [SMALL_STATE(530)] = 12324, - [SMALL_STATE(531)] = 12400, - [SMALL_STATE(532)] = 12476, - [SMALL_STATE(533)] = 12526, - [SMALL_STATE(534)] = 12586, - [SMALL_STATE(535)] = 12662, - [SMALL_STATE(536)] = 12726, - [SMALL_STATE(537)] = 12802, - [SMALL_STATE(538)] = 12878, - [SMALL_STATE(539)] = 12954, - [SMALL_STATE(540)] = 13020, - [SMALL_STATE(541)] = 13096, - [SMALL_STATE(542)] = 13166, - [SMALL_STATE(543)] = 13242, - [SMALL_STATE(544)] = 13314, - [SMALL_STATE(545)] = 13388, - [SMALL_STATE(546)] = 13464, - [SMALL_STATE(547)] = 13540, - [SMALL_STATE(548)] = 13616, - [SMALL_STATE(549)] = 13694, - [SMALL_STATE(550)] = 13774, - [SMALL_STATE(551)] = 13850, - [SMALL_STATE(552)] = 13912, - [SMALL_STATE(553)] = 13988, - [SMALL_STATE(554)] = 14064, - [SMALL_STATE(555)] = 14140, - [SMALL_STATE(556)] = 14190, - [SMALL_STATE(557)] = 14240, - [SMALL_STATE(558)] = 14316, - [SMALL_STATE(559)] = 14378, - [SMALL_STATE(560)] = 14454, - [SMALL_STATE(561)] = 14536, - [SMALL_STATE(562)] = 14586, - [SMALL_STATE(563)] = 14636, - [SMALL_STATE(564)] = 14712, - [SMALL_STATE(565)] = 14788, - [SMALL_STATE(566)] = 14864, - [SMALL_STATE(567)] = 14914, - [SMALL_STATE(568)] = 14990, - [SMALL_STATE(569)] = 15066, - [SMALL_STATE(570)] = 15142, - [SMALL_STATE(571)] = 15218, - [SMALL_STATE(572)] = 15294, - [SMALL_STATE(573)] = 15370, - [SMALL_STATE(574)] = 15430, - [SMALL_STATE(575)] = 15506, - [SMALL_STATE(576)] = 15556, - [SMALL_STATE(577)] = 15632, - [SMALL_STATE(578)] = 15708, - [SMALL_STATE(579)] = 15768, - [SMALL_STATE(580)] = 15844, - [SMALL_STATE(581)] = 15920, - [SMALL_STATE(582)] = 15970, - [SMALL_STATE(583)] = 16046, - [SMALL_STATE(584)] = 16096, - [SMALL_STATE(585)] = 16172, - [SMALL_STATE(586)] = 16222, - [SMALL_STATE(587)] = 16298, - [SMALL_STATE(588)] = 16374, - [SMALL_STATE(589)] = 16450, - [SMALL_STATE(590)] = 16500, - [SMALL_STATE(591)] = 16576, - [SMALL_STATE(592)] = 16652, - [SMALL_STATE(593)] = 16718, - [SMALL_STATE(594)] = 16794, - [SMALL_STATE(595)] = 16870, - [SMALL_STATE(596)] = 16946, - [SMALL_STATE(597)] = 17022, - [SMALL_STATE(598)] = 17098, - [SMALL_STATE(599)] = 17148, - [SMALL_STATE(600)] = 17224, - [SMALL_STATE(601)] = 17274, - [SMALL_STATE(602)] = 17350, - [SMALL_STATE(603)] = 17426, - [SMALL_STATE(604)] = 17502, - [SMALL_STATE(605)] = 17578, - [SMALL_STATE(606)] = 17654, - [SMALL_STATE(607)] = 17730, - [SMALL_STATE(608)] = 17806, - [SMALL_STATE(609)] = 17882, - [SMALL_STATE(610)] = 17935, - [SMALL_STATE(611)] = 18017, - [SMALL_STATE(612)] = 18070, - [SMALL_STATE(613)] = 18123, - [SMALL_STATE(614)] = 18170, - [SMALL_STATE(615)] = 18217, - [SMALL_STATE(616)] = 18270, - [SMALL_STATE(617)] = 18317, - [SMALL_STATE(618)] = 18370, - [SMALL_STATE(619)] = 18449, - [SMALL_STATE(620)] = 18511, - [SMALL_STATE(621)] = 18567, - [SMALL_STATE(622)] = 18623, - [SMALL_STATE(623)] = 18677, - [SMALL_STATE(624)] = 18735, - [SMALL_STATE(625)] = 18791, - [SMALL_STATE(626)] = 18857, - [SMALL_STATE(627)] = 18933, - [SMALL_STATE(628)] = 18995, - [SMALL_STATE(629)] = 19055, - [SMALL_STATE(630)] = 19129, - [SMALL_STATE(631)] = 19207, - [SMALL_STATE(632)] = 19279, - [SMALL_STATE(633)] = 19335, - [SMALL_STATE(634)] = 19415, - [SMALL_STATE(635)] = 19485, - [SMALL_STATE(636)] = 19553, - [SMALL_STATE(637)] = 19598, - [SMALL_STATE(638)] = 19643, - [SMALL_STATE(639)] = 19692, - [SMALL_STATE(640)] = 19737, - [SMALL_STATE(641)] = 19809, - [SMALL_STATE(642)] = 19881, - [SMALL_STATE(643)] = 19953, - [SMALL_STATE(644)] = 20009, - [SMALL_STATE(645)] = 20081, - [SMALL_STATE(646)] = 20150, - [SMALL_STATE(647)] = 20224, - [SMALL_STATE(648)] = 20268, - [SMALL_STATE(649)] = 20321, - [SMALL_STATE(650)] = 20378, - [SMALL_STATE(651)] = 20451, - [SMALL_STATE(652)] = 20518, - [SMALL_STATE(653)] = 20583, - [SMALL_STATE(654)] = 20652, - [SMALL_STATE(655)] = 20715, - [SMALL_STATE(656)] = 20786, - [SMALL_STATE(657)] = 20847, - [SMALL_STATE(658)] = 20904, - [SMALL_STATE(659)] = 20971, - [SMALL_STATE(660)] = 21026, - [SMALL_STATE(661)] = 21065, - [SMALL_STATE(662)] = 21103, - [SMALL_STATE(663)] = 21141, - [SMALL_STATE(664)] = 21178, - [SMALL_STATE(665)] = 21215, - [SMALL_STATE(666)] = 21252, - [SMALL_STATE(667)] = 21289, - [SMALL_STATE(668)] = 21326, - [SMALL_STATE(669)] = 21363, - [SMALL_STATE(670)] = 21438, - [SMALL_STATE(671)] = 21475, - [SMALL_STATE(672)] = 21512, - [SMALL_STATE(673)] = 21549, - [SMALL_STATE(674)] = 21586, - [SMALL_STATE(675)] = 21623, - [SMALL_STATE(676)] = 21660, - [SMALL_STATE(677)] = 21697, - [SMALL_STATE(678)] = 21734, - [SMALL_STATE(679)] = 21771, - [SMALL_STATE(680)] = 21808, - [SMALL_STATE(681)] = 21845, - [SMALL_STATE(682)] = 21882, - [SMALL_STATE(683)] = 21919, - [SMALL_STATE(684)] = 21956, - [SMALL_STATE(685)] = 22031, - [SMALL_STATE(686)] = 22068, + [SMALL_STATE(476)] = 8248, + [SMALL_STATE(477)] = 8330, + [SMALL_STATE(478)] = 8412, + [SMALL_STATE(479)] = 8494, + [SMALL_STATE(480)] = 8576, + [SMALL_STATE(481)] = 8658, + [SMALL_STATE(482)] = 8740, + [SMALL_STATE(483)] = 8822, + [SMALL_STATE(484)] = 8904, + [SMALL_STATE(485)] = 8986, + [SMALL_STATE(486)] = 9068, + [SMALL_STATE(487)] = 9150, + [SMALL_STATE(488)] = 9229, + [SMALL_STATE(489)] = 9280, + [SMALL_STATE(490)] = 9359, + [SMALL_STATE(491)] = 9438, + [SMALL_STATE(492)] = 9517, + [SMALL_STATE(493)] = 9596, + [SMALL_STATE(494)] = 9675, + [SMALL_STATE(495)] = 9754, + [SMALL_STATE(496)] = 9833, + [SMALL_STATE(497)] = 9912, + [SMALL_STATE(498)] = 9991, + [SMALL_STATE(499)] = 10070, + [SMALL_STATE(500)] = 10149, + [SMALL_STATE(501)] = 10228, + [SMALL_STATE(502)] = 10307, + [SMALL_STATE(503)] = 10386, + [SMALL_STATE(504)] = 10462, + [SMALL_STATE(505)] = 10538, + [SMALL_STATE(506)] = 10614, + [SMALL_STATE(507)] = 10674, + [SMALL_STATE(508)] = 10750, + [SMALL_STATE(509)] = 10826, + [SMALL_STATE(510)] = 10902, + [SMALL_STATE(511)] = 10978, + [SMALL_STATE(512)] = 11054, + [SMALL_STATE(513)] = 11130, + [SMALL_STATE(514)] = 11180, + [SMALL_STATE(515)] = 11256, + [SMALL_STATE(516)] = 11332, + [SMALL_STATE(517)] = 11382, + [SMALL_STATE(518)] = 11458, + [SMALL_STATE(519)] = 11534, + [SMALL_STATE(520)] = 11596, + [SMALL_STATE(521)] = 11672, + [SMALL_STATE(522)] = 11748, + [SMALL_STATE(523)] = 11806, + [SMALL_STATE(524)] = 11856, + [SMALL_STATE(525)] = 11916, + [SMALL_STATE(526)] = 11992, + [SMALL_STATE(527)] = 12068, + [SMALL_STATE(528)] = 12118, + [SMALL_STATE(529)] = 12194, + [SMALL_STATE(530)] = 12254, + [SMALL_STATE(531)] = 12330, + [SMALL_STATE(532)] = 12406, + [SMALL_STATE(533)] = 12482, + [SMALL_STATE(534)] = 12558, + [SMALL_STATE(535)] = 12634, + [SMALL_STATE(536)] = 12684, + [SMALL_STATE(537)] = 12760, + [SMALL_STATE(538)] = 12836, + [SMALL_STATE(539)] = 12912, + [SMALL_STATE(540)] = 12988, + [SMALL_STATE(541)] = 13064, + [SMALL_STATE(542)] = 13140, + [SMALL_STATE(543)] = 13216, + [SMALL_STATE(544)] = 13292, + [SMALL_STATE(545)] = 13368, + [SMALL_STATE(546)] = 13418, + [SMALL_STATE(547)] = 13468, + [SMALL_STATE(548)] = 13518, + [SMALL_STATE(549)] = 13594, + [SMALL_STATE(550)] = 13644, + [SMALL_STATE(551)] = 13720, + [SMALL_STATE(552)] = 13802, + [SMALL_STATE(553)] = 13878, + [SMALL_STATE(554)] = 13954, + [SMALL_STATE(555)] = 14030, + [SMALL_STATE(556)] = 14106, + [SMALL_STATE(557)] = 14182, + [SMALL_STATE(558)] = 14258, + [SMALL_STATE(559)] = 14334, + [SMALL_STATE(560)] = 14410, + [SMALL_STATE(561)] = 14486, + [SMALL_STATE(562)] = 14562, + [SMALL_STATE(563)] = 14638, + [SMALL_STATE(564)] = 14714, + [SMALL_STATE(565)] = 14790, + [SMALL_STATE(566)] = 14866, + [SMALL_STATE(567)] = 14942, + [SMALL_STATE(568)] = 15018, + [SMALL_STATE(569)] = 15094, + [SMALL_STATE(570)] = 15170, + [SMALL_STATE(571)] = 15220, + [SMALL_STATE(572)] = 15296, + [SMALL_STATE(573)] = 15372, + [SMALL_STATE(574)] = 15448, + [SMALL_STATE(575)] = 15524, + [SMALL_STATE(576)] = 15600, + [SMALL_STATE(577)] = 15676, + [SMALL_STATE(578)] = 15752, + [SMALL_STATE(579)] = 15828, + [SMALL_STATE(580)] = 15904, + [SMALL_STATE(581)] = 15954, + [SMALL_STATE(582)] = 16004, + [SMALL_STATE(583)] = 16064, + [SMALL_STATE(584)] = 16148, + [SMALL_STATE(585)] = 16224, + [SMALL_STATE(586)] = 16274, + [SMALL_STATE(587)] = 16324, + [SMALL_STATE(588)] = 16400, + [SMALL_STATE(589)] = 16476, + [SMALL_STATE(590)] = 16552, + [SMALL_STATE(591)] = 16628, + [SMALL_STATE(592)] = 16704, + [SMALL_STATE(593)] = 16780, + [SMALL_STATE(594)] = 16856, + [SMALL_STATE(595)] = 16920, + [SMALL_STATE(596)] = 16986, + [SMALL_STATE(597)] = 17056, + [SMALL_STATE(598)] = 17128, + [SMALL_STATE(599)] = 17202, + [SMALL_STATE(600)] = 17278, + [SMALL_STATE(601)] = 17356, + [SMALL_STATE(602)] = 17436, + [SMALL_STATE(603)] = 17512, + [SMALL_STATE(604)] = 17588, + [SMALL_STATE(605)] = 17650, + [SMALL_STATE(606)] = 17700, + [SMALL_STATE(607)] = 17766, + [SMALL_STATE(608)] = 17842, + [SMALL_STATE(609)] = 17918, + [SMALL_STATE(610)] = 17971, + [SMALL_STATE(611)] = 18053, + [SMALL_STATE(612)] = 18100, + [SMALL_STATE(613)] = 18153, + [SMALL_STATE(614)] = 18200, + [SMALL_STATE(615)] = 18247, + [SMALL_STATE(616)] = 18300, + [SMALL_STATE(617)] = 18353, + [SMALL_STATE(618)] = 18406, + [SMALL_STATE(619)] = 18485, + [SMALL_STATE(620)] = 18555, + [SMALL_STATE(621)] = 18635, + [SMALL_STATE(622)] = 18691, + [SMALL_STATE(623)] = 18745, + [SMALL_STATE(624)] = 18821, + [SMALL_STATE(625)] = 18895, + [SMALL_STATE(626)] = 18957, + [SMALL_STATE(627)] = 19029, + [SMALL_STATE(628)] = 19085, + [SMALL_STATE(629)] = 19153, + [SMALL_STATE(630)] = 19219, + [SMALL_STATE(631)] = 19275, + [SMALL_STATE(632)] = 19337, + [SMALL_STATE(633)] = 19397, + [SMALL_STATE(634)] = 19455, + [SMALL_STATE(635)] = 19533, + [SMALL_STATE(636)] = 19589, + [SMALL_STATE(637)] = 19634, + [SMALL_STATE(638)] = 19683, + [SMALL_STATE(639)] = 19728, + [SMALL_STATE(640)] = 19773, + [SMALL_STATE(641)] = 19829, + [SMALL_STATE(642)] = 19901, + [SMALL_STATE(643)] = 19973, + [SMALL_STATE(644)] = 20045, + [SMALL_STATE(645)] = 20117, + [SMALL_STATE(646)] = 20186, + [SMALL_STATE(647)] = 20260, + [SMALL_STATE(648)] = 20304, + [SMALL_STATE(649)] = 20365, + [SMALL_STATE(650)] = 20436, + [SMALL_STATE(651)] = 20509, + [SMALL_STATE(652)] = 20564, + [SMALL_STATE(653)] = 20621, + [SMALL_STATE(654)] = 20684, + [SMALL_STATE(655)] = 20749, + [SMALL_STATE(656)] = 20816, + [SMALL_STATE(657)] = 20883, + [SMALL_STATE(658)] = 20952, + [SMALL_STATE(659)] = 21005, + [SMALL_STATE(660)] = 21062, + [SMALL_STATE(661)] = 21101, + [SMALL_STATE(662)] = 21139, + [SMALL_STATE(663)] = 21177, + [SMALL_STATE(664)] = 21214, + [SMALL_STATE(665)] = 21289, + [SMALL_STATE(666)] = 21326, + [SMALL_STATE(667)] = 21363, + [SMALL_STATE(668)] = 21400, + [SMALL_STATE(669)] = 21437, + [SMALL_STATE(670)] = 21474, + [SMALL_STATE(671)] = 21511, + [SMALL_STATE(672)] = 21548, + [SMALL_STATE(673)] = 21585, + [SMALL_STATE(674)] = 21622, + [SMALL_STATE(675)] = 21659, + [SMALL_STATE(676)] = 21696, + [SMALL_STATE(677)] = 21733, + [SMALL_STATE(678)] = 21770, + [SMALL_STATE(679)] = 21845, + [SMALL_STATE(680)] = 21882, + [SMALL_STATE(681)] = 21919, + [SMALL_STATE(682)] = 21956, + [SMALL_STATE(683)] = 21993, + [SMALL_STATE(684)] = 22030, + [SMALL_STATE(685)] = 22067, + [SMALL_STATE(686)] = 22104, [SMALL_STATE(687)] = 22141, - [SMALL_STATE(688)] = 22216, - [SMALL_STATE(689)] = 22253, - [SMALL_STATE(690)] = 22290, - [SMALL_STATE(691)] = 22327, - [SMALL_STATE(692)] = 22399, + [SMALL_STATE(688)] = 22178, + [SMALL_STATE(689)] = 22215, + [SMALL_STATE(690)] = 22288, + [SMALL_STATE(691)] = 22363, + [SMALL_STATE(692)] = 22435, [SMALL_STATE(693)] = 22471, [SMALL_STATE(694)] = 22543, [SMALL_STATE(695)] = 22615, [SMALL_STATE(696)] = 22687, - [SMALL_STATE(697)] = 22757, - [SMALL_STATE(698)] = 22829, - [SMALL_STATE(699)] = 22899, - [SMALL_STATE(700)] = 22947, - [SMALL_STATE(701)] = 22995, - [SMALL_STATE(702)] = 23067, - [SMALL_STATE(703)] = 23115, - [SMALL_STATE(704)] = 23163, - [SMALL_STATE(705)] = 23199, - [SMALL_STATE(706)] = 23271, - [SMALL_STATE(707)] = 23343, - [SMALL_STATE(708)] = 23413, - [SMALL_STATE(709)] = 23449, - [SMALL_STATE(710)] = 23521, - [SMALL_STATE(711)] = 23593, - [SMALL_STATE(712)] = 23665, - [SMALL_STATE(713)] = 23737, - [SMALL_STATE(714)] = 23809, - [SMALL_STATE(715)] = 23879, - [SMALL_STATE(716)] = 23951, - [SMALL_STATE(717)] = 24023, - [SMALL_STATE(718)] = 24095, - [SMALL_STATE(719)] = 24165, - [SMALL_STATE(720)] = 24237, - [SMALL_STATE(721)] = 24309, - [SMALL_STATE(722)] = 24381, - [SMALL_STATE(723)] = 24453, - [SMALL_STATE(724)] = 24525, - [SMALL_STATE(725)] = 24597, - [SMALL_STATE(726)] = 24669, - [SMALL_STATE(727)] = 24741, - [SMALL_STATE(728)] = 24813, - [SMALL_STATE(729)] = 24885, - [SMALL_STATE(730)] = 24957, - [SMALL_STATE(731)] = 25029, - [SMALL_STATE(732)] = 25101, - [SMALL_STATE(733)] = 25173, - [SMALL_STATE(734)] = 25245, - [SMALL_STATE(735)] = 25317, - [SMALL_STATE(736)] = 25389, - [SMALL_STATE(737)] = 25461, - [SMALL_STATE(738)] = 25533, - [SMALL_STATE(739)] = 25605, - [SMALL_STATE(740)] = 25677, - [SMALL_STATE(741)] = 25712, - [SMALL_STATE(742)] = 25747, - [SMALL_STATE(743)] = 25782, - [SMALL_STATE(744)] = 25817, - [SMALL_STATE(745)] = 25856, - [SMALL_STATE(746)] = 25891, - [SMALL_STATE(747)] = 25960, - [SMALL_STATE(748)] = 26029, - [SMALL_STATE(749)] = 26064, - [SMALL_STATE(750)] = 26099, - [SMALL_STATE(751)] = 26134, - [SMALL_STATE(752)] = 26203, - [SMALL_STATE(753)] = 26272, - [SMALL_STATE(754)] = 26307, - [SMALL_STATE(755)] = 26376, - [SMALL_STATE(756)] = 26445, - [SMALL_STATE(757)] = 26496, - [SMALL_STATE(758)] = 26549, - [SMALL_STATE(759)] = 26606, - [SMALL_STATE(760)] = 26675, - [SMALL_STATE(761)] = 26734, - [SMALL_STATE(762)] = 26795, - [SMALL_STATE(763)] = 26858, - [SMALL_STATE(764)] = 26921, - [SMALL_STATE(765)] = 26990, - [SMALL_STATE(766)] = 27025, - [SMALL_STATE(767)] = 27090, - [SMALL_STATE(768)] = 27139, - [SMALL_STATE(769)] = 27174, - [SMALL_STATE(770)] = 27209, - [SMALL_STATE(771)] = 27278, - [SMALL_STATE(772)] = 27347, - [SMALL_STATE(773)] = 27416, - [SMALL_STATE(774)] = 27485, - [SMALL_STATE(775)] = 27554, - [SMALL_STATE(776)] = 27621, - [SMALL_STATE(777)] = 27656, - [SMALL_STATE(778)] = 27691, - [SMALL_STATE(779)] = 27726, - [SMALL_STATE(780)] = 27795, - [SMALL_STATE(781)] = 27830, - [SMALL_STATE(782)] = 27865, - [SMALL_STATE(783)] = 27900, - [SMALL_STATE(784)] = 27935, - [SMALL_STATE(785)] = 28004, - [SMALL_STATE(786)] = 28047, - [SMALL_STATE(787)] = 28082, - [SMALL_STATE(788)] = 28151, - [SMALL_STATE(789)] = 28220, - [SMALL_STATE(790)] = 28255, - [SMALL_STATE(791)] = 28290, - [SMALL_STATE(792)] = 28359, - [SMALL_STATE(793)] = 28428, - [SMALL_STATE(794)] = 28463, - [SMALL_STATE(795)] = 28532, - [SMALL_STATE(796)] = 28601, - [SMALL_STATE(797)] = 28670, - [SMALL_STATE(798)] = 28705, - [SMALL_STATE(799)] = 28740, - [SMALL_STATE(800)] = 28809, - [SMALL_STATE(801)] = 28878, - [SMALL_STATE(802)] = 28917, - [SMALL_STATE(803)] = 28952, - [SMALL_STATE(804)] = 28987, - [SMALL_STATE(805)] = 29056, - [SMALL_STATE(806)] = 29095, - [SMALL_STATE(807)] = 29164, - [SMALL_STATE(808)] = 29199, - [SMALL_STATE(809)] = 29268, - [SMALL_STATE(810)] = 29303, - [SMALL_STATE(811)] = 29338, - [SMALL_STATE(812)] = 29373, - [SMALL_STATE(813)] = 29408, - [SMALL_STATE(814)] = 29477, - [SMALL_STATE(815)] = 29546, - [SMALL_STATE(816)] = 29615, - [SMALL_STATE(817)] = 29650, - [SMALL_STATE(818)] = 29685, - [SMALL_STATE(819)] = 29720, - [SMALL_STATE(820)] = 29773, - [SMALL_STATE(821)] = 29808, - [SMALL_STATE(822)] = 29843, - [SMALL_STATE(823)] = 29878, - [SMALL_STATE(824)] = 29917, - [SMALL_STATE(825)] = 29986, - [SMALL_STATE(826)] = 30055, - [SMALL_STATE(827)] = 30124, - [SMALL_STATE(828)] = 30159, - [SMALL_STATE(829)] = 30228, - [SMALL_STATE(830)] = 30263, - [SMALL_STATE(831)] = 30302, - [SMALL_STATE(832)] = 30360, - [SMALL_STATE(833)] = 30415, - [SMALL_STATE(834)] = 30470, - [SMALL_STATE(835)] = 30525, - [SMALL_STATE(836)] = 30580, - [SMALL_STATE(837)] = 30635, - [SMALL_STATE(838)] = 30690, - [SMALL_STATE(839)] = 30745, - [SMALL_STATE(840)] = 30800, - [SMALL_STATE(841)] = 30855, - [SMALL_STATE(842)] = 30910, - [SMALL_STATE(843)] = 30965, - [SMALL_STATE(844)] = 31020, - [SMALL_STATE(845)] = 31066, - [SMALL_STATE(846)] = 31112, - [SMALL_STATE(847)] = 31158, - [SMALL_STATE(848)] = 31204, - [SMALL_STATE(849)] = 31239, - [SMALL_STATE(850)] = 31274, - [SMALL_STATE(851)] = 31325, - [SMALL_STATE(852)] = 31360, - [SMALL_STATE(853)] = 31395, - [SMALL_STATE(854)] = 31430, - [SMALL_STATE(855)] = 31478, - [SMALL_STATE(856)] = 31526, - [SMALL_STATE(857)] = 31560, - [SMALL_STATE(858)] = 31608, - [SMALL_STATE(859)] = 31656, - [SMALL_STATE(860)] = 31704, - [SMALL_STATE(861)] = 31752, - [SMALL_STATE(862)] = 31800, - [SMALL_STATE(863)] = 31848, - [SMALL_STATE(864)] = 31896, - [SMALL_STATE(865)] = 31927, - [SMALL_STATE(866)] = 31956, - [SMALL_STATE(867)] = 31989, - [SMALL_STATE(868)] = 32018, - [SMALL_STATE(869)] = 32047, - [SMALL_STATE(870)] = 32076, - [SMALL_STATE(871)] = 32105, - [SMALL_STATE(872)] = 32148, - [SMALL_STATE(873)] = 32177, - [SMALL_STATE(874)] = 32206, - [SMALL_STATE(875)] = 32239, - [SMALL_STATE(876)] = 32294, - [SMALL_STATE(877)] = 32323, - [SMALL_STATE(878)] = 32352, - [SMALL_STATE(879)] = 32407, - [SMALL_STATE(880)] = 32436, - [SMALL_STATE(881)] = 32465, - [SMALL_STATE(882)] = 32494, - [SMALL_STATE(883)] = 32523, - [SMALL_STATE(884)] = 32552, - [SMALL_STATE(885)] = 32581, - [SMALL_STATE(886)] = 32624, - [SMALL_STATE(887)] = 32653, - [SMALL_STATE(888)] = 32682, - [SMALL_STATE(889)] = 32711, - [SMALL_STATE(890)] = 32740, - [SMALL_STATE(891)] = 32769, - [SMALL_STATE(892)] = 32798, - [SMALL_STATE(893)] = 32838, - [SMALL_STATE(894)] = 32866, - [SMALL_STATE(895)] = 32906, - [SMALL_STATE(896)] = 32946, - [SMALL_STATE(897)] = 32994, - [SMALL_STATE(898)] = 33034, - [SMALL_STATE(899)] = 33062, - [SMALL_STATE(900)] = 33102, - [SMALL_STATE(901)] = 33142, - [SMALL_STATE(902)] = 33174, - [SMALL_STATE(903)] = 33210, - [SMALL_STATE(904)] = 33244, - [SMALL_STATE(905)] = 33272, - [SMALL_STATE(906)] = 33312, - [SMALL_STATE(907)] = 33352, - [SMALL_STATE(908)] = 33392, - [SMALL_STATE(909)] = 33420, - [SMALL_STATE(910)] = 33460, - [SMALL_STATE(911)] = 33500, - [SMALL_STATE(912)] = 33540, - [SMALL_STATE(913)] = 33580, - [SMALL_STATE(914)] = 33624, - [SMALL_STATE(915)] = 33664, - [SMALL_STATE(916)] = 33704, - [SMALL_STATE(917)] = 33744, - [SMALL_STATE(918)] = 33790, - [SMALL_STATE(919)] = 33830, - [SMALL_STATE(920)] = 33870, - [SMALL_STATE(921)] = 33910, - [SMALL_STATE(922)] = 33956, - [SMALL_STATE(923)] = 33996, - [SMALL_STATE(924)] = 34024, - [SMALL_STATE(925)] = 34052, - [SMALL_STATE(926)] = 34102, - [SMALL_STATE(927)] = 34142, - [SMALL_STATE(928)] = 34190, - [SMALL_STATE(929)] = 34218, - [SMALL_STATE(930)] = 34246, - [SMALL_STATE(931)] = 34286, - [SMALL_STATE(932)] = 34314, - [SMALL_STATE(933)] = 34356, - [SMALL_STATE(934)] = 34396, - [SMALL_STATE(935)] = 34436, - [SMALL_STATE(936)] = 34476, - [SMALL_STATE(937)] = 34516, - [SMALL_STATE(938)] = 34556, - [SMALL_STATE(939)] = 34584, - [SMALL_STATE(940)] = 34624, - [SMALL_STATE(941)] = 34664, - [SMALL_STATE(942)] = 34704, - [SMALL_STATE(943)] = 34744, - [SMALL_STATE(944)] = 34784, - [SMALL_STATE(945)] = 34824, - [SMALL_STATE(946)] = 34864, - [SMALL_STATE(947)] = 34904, - [SMALL_STATE(948)] = 34949, - [SMALL_STATE(949)] = 34976, - [SMALL_STATE(950)] = 35017, - [SMALL_STATE(951)] = 35062, - [SMALL_STATE(952)] = 35089, - [SMALL_STATE(953)] = 35116, - [SMALL_STATE(954)] = 35143, - [SMALL_STATE(955)] = 35170, - [SMALL_STATE(956)] = 35207, - [SMALL_STATE(957)] = 35234, - [SMALL_STATE(958)] = 35279, - [SMALL_STATE(959)] = 35308, - [SMALL_STATE(960)] = 35353, - [SMALL_STATE(961)] = 35380, - [SMALL_STATE(962)] = 35423, - [SMALL_STATE(963)] = 35450, - [SMALL_STATE(964)] = 35477, - [SMALL_STATE(965)] = 35508, - [SMALL_STATE(966)] = 35557, - [SMALL_STATE(967)] = 35602, - [SMALL_STATE(968)] = 35635, - [SMALL_STATE(969)] = 35662, - [SMALL_STATE(970)] = 35711, - [SMALL_STATE(971)] = 35756, - [SMALL_STATE(972)] = 35801, - [SMALL_STATE(973)] = 35836, - [SMALL_STATE(974)] = 35881, - [SMALL_STATE(975)] = 35926, - [SMALL_STATE(976)] = 35965, - [SMALL_STATE(977)] = 36010, - [SMALL_STATE(978)] = 36043, - [SMALL_STATE(979)] = 36082, - [SMALL_STATE(980)] = 36121, - [SMALL_STATE(981)] = 36160, - [SMALL_STATE(982)] = 36199, - [SMALL_STATE(983)] = 36238, - [SMALL_STATE(984)] = 36277, - [SMALL_STATE(985)] = 36316, - [SMALL_STATE(986)] = 36355, - [SMALL_STATE(987)] = 36394, - [SMALL_STATE(988)] = 36432, - [SMALL_STATE(989)] = 36470, - [SMALL_STATE(990)] = 36508, - [SMALL_STATE(991)] = 36540, - [SMALL_STATE(992)] = 36578, - [SMALL_STATE(993)] = 36616, - [SMALL_STATE(994)] = 36654, - [SMALL_STATE(995)] = 36685, - [SMALL_STATE(996)] = 36723, - [SMALL_STATE(997)] = 36761, - [SMALL_STATE(998)] = 36799, - [SMALL_STATE(999)] = 36820, - [SMALL_STATE(1000)] = 36841, - [SMALL_STATE(1001)] = 36879, - [SMALL_STATE(1002)] = 36911, - [SMALL_STATE(1003)] = 36943, - [SMALL_STATE(1004)] = 36975, - [SMALL_STATE(1005)] = 37007, - [SMALL_STATE(1006)] = 37039, - [SMALL_STATE(1007)] = 37077, - [SMALL_STATE(1008)] = 37109, - [SMALL_STATE(1009)] = 37141, - [SMALL_STATE(1010)] = 37179, - [SMALL_STATE(1011)] = 37211, - [SMALL_STATE(1012)] = 37249, - [SMALL_STATE(1013)] = 37281, - [SMALL_STATE(1014)] = 37310, - [SMALL_STATE(1015)] = 37345, - [SMALL_STATE(1016)] = 37380, - [SMALL_STATE(1017)] = 37403, - [SMALL_STATE(1018)] = 37430, - [SMALL_STATE(1019)] = 37459, - [SMALL_STATE(1020)] = 37488, - [SMALL_STATE(1021)] = 37517, - [SMALL_STATE(1022)] = 37546, - [SMALL_STATE(1023)] = 37575, - [SMALL_STATE(1024)] = 37604, - [SMALL_STATE(1025)] = 37631, - [SMALL_STATE(1026)] = 37654, - [SMALL_STATE(1027)] = 37683, - [SMALL_STATE(1028)] = 37710, - [SMALL_STATE(1029)] = 37739, - [SMALL_STATE(1030)] = 37768, - [SMALL_STATE(1031)] = 37803, - [SMALL_STATE(1032)] = 37832, - [SMALL_STATE(1033)] = 37861, - [SMALL_STATE(1034)] = 37884, - [SMALL_STATE(1035)] = 37913, - [SMALL_STATE(1036)] = 37942, - [SMALL_STATE(1037)] = 37965, - [SMALL_STATE(1038)] = 37994, - [SMALL_STATE(1039)] = 38021, - [SMALL_STATE(1040)] = 38050, - [SMALL_STATE(1041)] = 38079, - [SMALL_STATE(1042)] = 38097, - [SMALL_STATE(1043)] = 38123, - [SMALL_STATE(1044)] = 38155, - [SMALL_STATE(1045)] = 38177, - [SMALL_STATE(1046)] = 38195, - [SMALL_STATE(1047)] = 38221, - [SMALL_STATE(1048)] = 38253, - [SMALL_STATE(1049)] = 38285, - [SMALL_STATE(1050)] = 38317, - [SMALL_STATE(1051)] = 38335, - [SMALL_STATE(1052)] = 38361, - [SMALL_STATE(1053)] = 38387, - [SMALL_STATE(1054)] = 38408, - [SMALL_STATE(1055)] = 38433, - [SMALL_STATE(1056)] = 38462, - [SMALL_STATE(1057)] = 38491, - [SMALL_STATE(1058)] = 38518, - [SMALL_STATE(1059)] = 38543, - [SMALL_STATE(1060)] = 38572, - [SMALL_STATE(1061)] = 38601, - [SMALL_STATE(1062)] = 38622, - [SMALL_STATE(1063)] = 38643, - [SMALL_STATE(1064)] = 38672, - [SMALL_STATE(1065)] = 38693, - [SMALL_STATE(1066)] = 38718, - [SMALL_STATE(1067)] = 38747, - [SMALL_STATE(1068)] = 38772, - [SMALL_STATE(1069)] = 38801, - [SMALL_STATE(1070)] = 38826, - [SMALL_STATE(1071)] = 38847, - [SMALL_STATE(1072)] = 38876, - [SMALL_STATE(1073)] = 38902, - [SMALL_STATE(1074)] = 38918, - [SMALL_STATE(1075)] = 38942, - [SMALL_STATE(1076)] = 38958, - [SMALL_STATE(1077)] = 38974, - [SMALL_STATE(1078)] = 38990, - [SMALL_STATE(1079)] = 39016, - [SMALL_STATE(1080)] = 39040, - [SMALL_STATE(1081)] = 39056, - [SMALL_STATE(1082)] = 39082, - [SMALL_STATE(1083)] = 39098, - [SMALL_STATE(1084)] = 39124, - [SMALL_STATE(1085)] = 39144, - [SMALL_STATE(1086)] = 39159, - [SMALL_STATE(1087)] = 39174, - [SMALL_STATE(1088)] = 39189, - [SMALL_STATE(1089)] = 39212, - [SMALL_STATE(1090)] = 39235, - [SMALL_STATE(1091)] = 39250, - [SMALL_STATE(1092)] = 39265, - [SMALL_STATE(1093)] = 39288, - [SMALL_STATE(1094)] = 39303, - [SMALL_STATE(1095)] = 39318, - [SMALL_STATE(1096)] = 39333, - [SMALL_STATE(1097)] = 39347, - [SMALL_STATE(1098)] = 39361, - [SMALL_STATE(1099)] = 39375, - [SMALL_STATE(1100)] = 39393, - [SMALL_STATE(1101)] = 39407, - [SMALL_STATE(1102)] = 39421, - [SMALL_STATE(1103)] = 39439, - [SMALL_STATE(1104)] = 39453, - [SMALL_STATE(1105)] = 39467, - [SMALL_STATE(1106)] = 39481, - [SMALL_STATE(1107)] = 39500, - [SMALL_STATE(1108)] = 39519, - [SMALL_STATE(1109)] = 39536, - [SMALL_STATE(1110)] = 39555, - [SMALL_STATE(1111)] = 39572, - [SMALL_STATE(1112)] = 39591, - [SMALL_STATE(1113)] = 39610, - [SMALL_STATE(1114)] = 39627, - [SMALL_STATE(1115)] = 39644, - [SMALL_STATE(1116)] = 39660, - [SMALL_STATE(1117)] = 39670, - [SMALL_STATE(1118)] = 39686, - [SMALL_STATE(1119)] = 39696, - [SMALL_STATE(1120)] = 39712, - [SMALL_STATE(1121)] = 39722, - [SMALL_STATE(1122)] = 39732, - [SMALL_STATE(1123)] = 39748, - [SMALL_STATE(1124)] = 39764, - [SMALL_STATE(1125)] = 39780, - [SMALL_STATE(1126)] = 39790, - [SMALL_STATE(1127)] = 39804, - [SMALL_STATE(1128)] = 39820, - [SMALL_STATE(1129)] = 39836, - [SMALL_STATE(1130)] = 39852, - [SMALL_STATE(1131)] = 39868, - [SMALL_STATE(1132)] = 39878, - [SMALL_STATE(1133)] = 39894, - [SMALL_STATE(1134)] = 39904, - [SMALL_STATE(1135)] = 39914, - [SMALL_STATE(1136)] = 39928, - [SMALL_STATE(1137)] = 39938, - [SMALL_STATE(1138)] = 39954, - [SMALL_STATE(1139)] = 39970, - [SMALL_STATE(1140)] = 39986, - [SMALL_STATE(1141)] = 40002, - [SMALL_STATE(1142)] = 40012, - [SMALL_STATE(1143)] = 40022, - [SMALL_STATE(1144)] = 40032, - [SMALL_STATE(1145)] = 40048, - [SMALL_STATE(1146)] = 40064, - [SMALL_STATE(1147)] = 40080, - [SMALL_STATE(1148)] = 40096, - [SMALL_STATE(1149)] = 40112, - [SMALL_STATE(1150)] = 40125, - [SMALL_STATE(1151)] = 40138, - [SMALL_STATE(1152)] = 40151, - [SMALL_STATE(1153)] = 40164, - [SMALL_STATE(1154)] = 40177, - [SMALL_STATE(1155)] = 40190, - [SMALL_STATE(1156)] = 40203, - [SMALL_STATE(1157)] = 40216, - [SMALL_STATE(1158)] = 40229, - [SMALL_STATE(1159)] = 40242, - [SMALL_STATE(1160)] = 40255, - [SMALL_STATE(1161)] = 40268, - [SMALL_STATE(1162)] = 40281, - [SMALL_STATE(1163)] = 40294, - [SMALL_STATE(1164)] = 40307, - [SMALL_STATE(1165)] = 40320, - [SMALL_STATE(1166)] = 40333, - [SMALL_STATE(1167)] = 40346, - [SMALL_STATE(1168)] = 40359, - [SMALL_STATE(1169)] = 40372, - [SMALL_STATE(1170)] = 40385, - [SMALL_STATE(1171)] = 40398, - [SMALL_STATE(1172)] = 40411, - [SMALL_STATE(1173)] = 40424, - [SMALL_STATE(1174)] = 40437, - [SMALL_STATE(1175)] = 40450, - [SMALL_STATE(1176)] = 40463, - [SMALL_STATE(1177)] = 40476, - [SMALL_STATE(1178)] = 40489, - [SMALL_STATE(1179)] = 40502, - [SMALL_STATE(1180)] = 40513, - [SMALL_STATE(1181)] = 40526, - [SMALL_STATE(1182)] = 40539, - [SMALL_STATE(1183)] = 40552, - [SMALL_STATE(1184)] = 40565, - [SMALL_STATE(1185)] = 40578, - [SMALL_STATE(1186)] = 40591, - [SMALL_STATE(1187)] = 40604, - [SMALL_STATE(1188)] = 40617, - [SMALL_STATE(1189)] = 40630, - [SMALL_STATE(1190)] = 40643, - [SMALL_STATE(1191)] = 40656, - [SMALL_STATE(1192)] = 40665, - [SMALL_STATE(1193)] = 40678, - [SMALL_STATE(1194)] = 40691, - [SMALL_STATE(1195)] = 40704, - [SMALL_STATE(1196)] = 40717, - [SMALL_STATE(1197)] = 40730, - [SMALL_STATE(1198)] = 40741, - [SMALL_STATE(1199)] = 40754, - [SMALL_STATE(1200)] = 40767, - [SMALL_STATE(1201)] = 40776, - [SMALL_STATE(1202)] = 40789, - [SMALL_STATE(1203)] = 40802, - [SMALL_STATE(1204)] = 40815, - [SMALL_STATE(1205)] = 40828, - [SMALL_STATE(1206)] = 40841, - [SMALL_STATE(1207)] = 40854, - [SMALL_STATE(1208)] = 40867, - [SMALL_STATE(1209)] = 40880, - [SMALL_STATE(1210)] = 40890, - [SMALL_STATE(1211)] = 40898, - [SMALL_STATE(1212)] = 40908, - [SMALL_STATE(1213)] = 40916, - [SMALL_STATE(1214)] = 40924, - [SMALL_STATE(1215)] = 40934, - [SMALL_STATE(1216)] = 40942, - [SMALL_STATE(1217)] = 40952, - [SMALL_STATE(1218)] = 40962, - [SMALL_STATE(1219)] = 40972, - [SMALL_STATE(1220)] = 40980, - [SMALL_STATE(1221)] = 40990, - [SMALL_STATE(1222)] = 41000, - [SMALL_STATE(1223)] = 41010, - [SMALL_STATE(1224)] = 41018, - [SMALL_STATE(1225)] = 41028, - [SMALL_STATE(1226)] = 41038, - [SMALL_STATE(1227)] = 41046, - [SMALL_STATE(1228)] = 41054, - [SMALL_STATE(1229)] = 41064, - [SMALL_STATE(1230)] = 41072, - [SMALL_STATE(1231)] = 41080, - [SMALL_STATE(1232)] = 41090, - [SMALL_STATE(1233)] = 41098, - [SMALL_STATE(1234)] = 41108, - [SMALL_STATE(1235)] = 41116, - [SMALL_STATE(1236)] = 41126, - [SMALL_STATE(1237)] = 41134, - [SMALL_STATE(1238)] = 41142, - [SMALL_STATE(1239)] = 41150, - [SMALL_STATE(1240)] = 41160, - [SMALL_STATE(1241)] = 41170, - [SMALL_STATE(1242)] = 41180, - [SMALL_STATE(1243)] = 41190, - [SMALL_STATE(1244)] = 41198, - [SMALL_STATE(1245)] = 41208, - [SMALL_STATE(1246)] = 41218, - [SMALL_STATE(1247)] = 41228, - [SMALL_STATE(1248)] = 41238, - [SMALL_STATE(1249)] = 41248, - [SMALL_STATE(1250)] = 41258, - [SMALL_STATE(1251)] = 41268, - [SMALL_STATE(1252)] = 41278, - [SMALL_STATE(1253)] = 41288, - [SMALL_STATE(1254)] = 41298, - [SMALL_STATE(1255)] = 41308, - [SMALL_STATE(1256)] = 41318, - [SMALL_STATE(1257)] = 41326, - [SMALL_STATE(1258)] = 41336, - [SMALL_STATE(1259)] = 41346, - [SMALL_STATE(1260)] = 41356, - [SMALL_STATE(1261)] = 41366, - [SMALL_STATE(1262)] = 41376, - [SMALL_STATE(1263)] = 41386, - [SMALL_STATE(1264)] = 41394, - [SMALL_STATE(1265)] = 41402, - [SMALL_STATE(1266)] = 41412, - [SMALL_STATE(1267)] = 41422, - [SMALL_STATE(1268)] = 41432, - [SMALL_STATE(1269)] = 41442, - [SMALL_STATE(1270)] = 41452, - [SMALL_STATE(1271)] = 41462, - [SMALL_STATE(1272)] = 41469, - [SMALL_STATE(1273)] = 41476, - [SMALL_STATE(1274)] = 41483, - [SMALL_STATE(1275)] = 41490, - [SMALL_STATE(1276)] = 41497, - [SMALL_STATE(1277)] = 41504, - [SMALL_STATE(1278)] = 41511, - [SMALL_STATE(1279)] = 41518, - [SMALL_STATE(1280)] = 41525, - [SMALL_STATE(1281)] = 41532, - [SMALL_STATE(1282)] = 41539, - [SMALL_STATE(1283)] = 41546, - [SMALL_STATE(1284)] = 41553, - [SMALL_STATE(1285)] = 41560, - [SMALL_STATE(1286)] = 41567, - [SMALL_STATE(1287)] = 41574, - [SMALL_STATE(1288)] = 41581, - [SMALL_STATE(1289)] = 41588, - [SMALL_STATE(1290)] = 41595, - [SMALL_STATE(1291)] = 41602, - [SMALL_STATE(1292)] = 41609, - [SMALL_STATE(1293)] = 41616, - [SMALL_STATE(1294)] = 41623, - [SMALL_STATE(1295)] = 41630, - [SMALL_STATE(1296)] = 41637, - [SMALL_STATE(1297)] = 41644, - [SMALL_STATE(1298)] = 41651, - [SMALL_STATE(1299)] = 41658, - [SMALL_STATE(1300)] = 41665, - [SMALL_STATE(1301)] = 41672, - [SMALL_STATE(1302)] = 41679, - [SMALL_STATE(1303)] = 41686, - [SMALL_STATE(1304)] = 41693, - [SMALL_STATE(1305)] = 41700, - [SMALL_STATE(1306)] = 41707, - [SMALL_STATE(1307)] = 41714, - [SMALL_STATE(1308)] = 41721, - [SMALL_STATE(1309)] = 41728, - [SMALL_STATE(1310)] = 41735, - [SMALL_STATE(1311)] = 41742, - [SMALL_STATE(1312)] = 41749, - [SMALL_STATE(1313)] = 41756, - [SMALL_STATE(1314)] = 41763, - [SMALL_STATE(1315)] = 41770, - [SMALL_STATE(1316)] = 41777, - [SMALL_STATE(1317)] = 41784, - [SMALL_STATE(1318)] = 41791, - [SMALL_STATE(1319)] = 41798, - [SMALL_STATE(1320)] = 41805, - [SMALL_STATE(1321)] = 41812, - [SMALL_STATE(1322)] = 41819, - [SMALL_STATE(1323)] = 41826, - [SMALL_STATE(1324)] = 41833, - [SMALL_STATE(1325)] = 41840, - [SMALL_STATE(1326)] = 41847, - [SMALL_STATE(1327)] = 41854, - [SMALL_STATE(1328)] = 41861, - [SMALL_STATE(1329)] = 41868, - [SMALL_STATE(1330)] = 41875, - [SMALL_STATE(1331)] = 41882, - [SMALL_STATE(1332)] = 41889, - [SMALL_STATE(1333)] = 41896, - [SMALL_STATE(1334)] = 41903, - [SMALL_STATE(1335)] = 41910, - [SMALL_STATE(1336)] = 41917, - [SMALL_STATE(1337)] = 41924, - [SMALL_STATE(1338)] = 41931, - [SMALL_STATE(1339)] = 41938, - [SMALL_STATE(1340)] = 41945, - [SMALL_STATE(1341)] = 41952, - [SMALL_STATE(1342)] = 41959, - [SMALL_STATE(1343)] = 41966, - [SMALL_STATE(1344)] = 41973, - [SMALL_STATE(1345)] = 41980, - [SMALL_STATE(1346)] = 41987, - [SMALL_STATE(1347)] = 41994, - [SMALL_STATE(1348)] = 42001, - [SMALL_STATE(1349)] = 42008, - [SMALL_STATE(1350)] = 42015, - [SMALL_STATE(1351)] = 42022, - [SMALL_STATE(1352)] = 42029, - [SMALL_STATE(1353)] = 42036, - [SMALL_STATE(1354)] = 42043, - [SMALL_STATE(1355)] = 42050, - [SMALL_STATE(1356)] = 42057, - [SMALL_STATE(1357)] = 42064, - [SMALL_STATE(1358)] = 42071, - [SMALL_STATE(1359)] = 42078, - [SMALL_STATE(1360)] = 42085, - [SMALL_STATE(1361)] = 42092, - [SMALL_STATE(1362)] = 42099, - [SMALL_STATE(1363)] = 42106, - [SMALL_STATE(1364)] = 42113, - [SMALL_STATE(1365)] = 42120, - [SMALL_STATE(1366)] = 42127, - [SMALL_STATE(1367)] = 42134, - [SMALL_STATE(1368)] = 42141, - [SMALL_STATE(1369)] = 42148, - [SMALL_STATE(1370)] = 42155, - [SMALL_STATE(1371)] = 42162, - [SMALL_STATE(1372)] = 42169, - [SMALL_STATE(1373)] = 42176, - [SMALL_STATE(1374)] = 42183, - [SMALL_STATE(1375)] = 42190, - [SMALL_STATE(1376)] = 42197, - [SMALL_STATE(1377)] = 42204, - [SMALL_STATE(1378)] = 42211, - [SMALL_STATE(1379)] = 42218, - [SMALL_STATE(1380)] = 42225, - [SMALL_STATE(1381)] = 42232, - [SMALL_STATE(1382)] = 42239, - [SMALL_STATE(1383)] = 42246, - [SMALL_STATE(1384)] = 42253, - [SMALL_STATE(1385)] = 42260, - [SMALL_STATE(1386)] = 42267, - [SMALL_STATE(1387)] = 42274, - [SMALL_STATE(1388)] = 42281, - [SMALL_STATE(1389)] = 42288, - [SMALL_STATE(1390)] = 42295, - [SMALL_STATE(1391)] = 42302, - [SMALL_STATE(1392)] = 42309, - [SMALL_STATE(1393)] = 42316, - [SMALL_STATE(1394)] = 42323, - [SMALL_STATE(1395)] = 42330, - [SMALL_STATE(1396)] = 42337, - [SMALL_STATE(1397)] = 42344, - [SMALL_STATE(1398)] = 42351, - [SMALL_STATE(1399)] = 42358, - [SMALL_STATE(1400)] = 42365, - [SMALL_STATE(1401)] = 42372, - [SMALL_STATE(1402)] = 42379, - [SMALL_STATE(1403)] = 42386, - [SMALL_STATE(1404)] = 42393, - [SMALL_STATE(1405)] = 42400, - [SMALL_STATE(1406)] = 42407, - [SMALL_STATE(1407)] = 42414, - [SMALL_STATE(1408)] = 42421, - [SMALL_STATE(1409)] = 42428, - [SMALL_STATE(1410)] = 42435, - [SMALL_STATE(1411)] = 42442, - [SMALL_STATE(1412)] = 42449, - [SMALL_STATE(1413)] = 42456, - [SMALL_STATE(1414)] = 42463, - [SMALL_STATE(1415)] = 42470, - [SMALL_STATE(1416)] = 42477, - [SMALL_STATE(1417)] = 42484, - [SMALL_STATE(1418)] = 42491, - [SMALL_STATE(1419)] = 42498, - [SMALL_STATE(1420)] = 42505, - [SMALL_STATE(1421)] = 42512, - [SMALL_STATE(1422)] = 42519, - [SMALL_STATE(1423)] = 42526, - [SMALL_STATE(1424)] = 42533, - [SMALL_STATE(1425)] = 42540, - [SMALL_STATE(1426)] = 42547, - [SMALL_STATE(1427)] = 42554, - [SMALL_STATE(1428)] = 42561, - [SMALL_STATE(1429)] = 42568, - [SMALL_STATE(1430)] = 42575, - [SMALL_STATE(1431)] = 42582, - [SMALL_STATE(1432)] = 42589, - [SMALL_STATE(1433)] = 42596, - [SMALL_STATE(1434)] = 42603, - [SMALL_STATE(1435)] = 42610, - [SMALL_STATE(1436)] = 42617, - [SMALL_STATE(1437)] = 42624, - [SMALL_STATE(1438)] = 42631, - [SMALL_STATE(1439)] = 42638, - [SMALL_STATE(1440)] = 42645, - [SMALL_STATE(1441)] = 42652, - [SMALL_STATE(1442)] = 42659, - [SMALL_STATE(1443)] = 42666, - [SMALL_STATE(1444)] = 42673, - [SMALL_STATE(1445)] = 42680, - [SMALL_STATE(1446)] = 42687, - [SMALL_STATE(1447)] = 42694, - [SMALL_STATE(1448)] = 42701, - [SMALL_STATE(1449)] = 42708, - [SMALL_STATE(1450)] = 42715, - [SMALL_STATE(1451)] = 42722, - [SMALL_STATE(1452)] = 42729, - [SMALL_STATE(1453)] = 42736, + [SMALL_STATE(697)] = 22759, + [SMALL_STATE(698)] = 22831, + [SMALL_STATE(699)] = 22903, + [SMALL_STATE(700)] = 22975, + [SMALL_STATE(701)] = 23047, + [SMALL_STATE(702)] = 23119, + [SMALL_STATE(703)] = 23191, + [SMALL_STATE(704)] = 23263, + [SMALL_STATE(705)] = 23335, + [SMALL_STATE(706)] = 23407, + [SMALL_STATE(707)] = 23477, + [SMALL_STATE(708)] = 23525, + [SMALL_STATE(709)] = 23597, + [SMALL_STATE(710)] = 23669, + [SMALL_STATE(711)] = 23741, + [SMALL_STATE(712)] = 23813, + [SMALL_STATE(713)] = 23861, + [SMALL_STATE(714)] = 23933, + [SMALL_STATE(715)] = 24005, + [SMALL_STATE(716)] = 24077, + [SMALL_STATE(717)] = 24149, + [SMALL_STATE(718)] = 24221, + [SMALL_STATE(719)] = 24293, + [SMALL_STATE(720)] = 24365, + [SMALL_STATE(721)] = 24437, + [SMALL_STATE(722)] = 24509, + [SMALL_STATE(723)] = 24581, + [SMALL_STATE(724)] = 24651, + [SMALL_STATE(725)] = 24723, + [SMALL_STATE(726)] = 24795, + [SMALL_STATE(727)] = 24867, + [SMALL_STATE(728)] = 24939, + [SMALL_STATE(729)] = 25009, + [SMALL_STATE(730)] = 25081, + [SMALL_STATE(731)] = 25117, + [SMALL_STATE(732)] = 25189, + [SMALL_STATE(733)] = 25261, + [SMALL_STATE(734)] = 25333, + [SMALL_STATE(735)] = 25405, + [SMALL_STATE(736)] = 25477, + [SMALL_STATE(737)] = 25549, + [SMALL_STATE(738)] = 25621, + [SMALL_STATE(739)] = 25693, + [SMALL_STATE(740)] = 25765, + [SMALL_STATE(741)] = 25837, + [SMALL_STATE(742)] = 25909, + [SMALL_STATE(743)] = 25979, + [SMALL_STATE(744)] = 26027, + [SMALL_STATE(745)] = 26099, + [SMALL_STATE(746)] = 26171, + [SMALL_STATE(747)] = 26243, + [SMALL_STATE(748)] = 26315, + [SMALL_STATE(749)] = 26387, + [SMALL_STATE(750)] = 26459, + [SMALL_STATE(751)] = 26507, + [SMALL_STATE(752)] = 26577, + [SMALL_STATE(753)] = 26646, + [SMALL_STATE(754)] = 26715, + [SMALL_STATE(755)] = 26768, + [SMALL_STATE(756)] = 26837, + [SMALL_STATE(757)] = 26906, + [SMALL_STATE(758)] = 26975, + [SMALL_STATE(759)] = 27018, + [SMALL_STATE(760)] = 27087, + [SMALL_STATE(761)] = 27156, + [SMALL_STATE(762)] = 27191, + [SMALL_STATE(763)] = 27260, + [SMALL_STATE(764)] = 27299, + [SMALL_STATE(765)] = 27334, + [SMALL_STATE(766)] = 27369, + [SMALL_STATE(767)] = 27404, + [SMALL_STATE(768)] = 27439, + [SMALL_STATE(769)] = 27474, + [SMALL_STATE(770)] = 27509, + [SMALL_STATE(771)] = 27544, + [SMALL_STATE(772)] = 27613, + [SMALL_STATE(773)] = 27648, + [SMALL_STATE(774)] = 27683, + [SMALL_STATE(775)] = 27718, + [SMALL_STATE(776)] = 27753, + [SMALL_STATE(777)] = 27788, + [SMALL_STATE(778)] = 27857, + [SMALL_STATE(779)] = 27892, + [SMALL_STATE(780)] = 27927, + [SMALL_STATE(781)] = 27996, + [SMALL_STATE(782)] = 28065, + [SMALL_STATE(783)] = 28100, + [SMALL_STATE(784)] = 28169, + [SMALL_STATE(785)] = 28208, + [SMALL_STATE(786)] = 28243, + [SMALL_STATE(787)] = 28278, + [SMALL_STATE(788)] = 28317, + [SMALL_STATE(789)] = 28386, + [SMALL_STATE(790)] = 28421, + [SMALL_STATE(791)] = 28456, + [SMALL_STATE(792)] = 28491, + [SMALL_STATE(793)] = 28526, + [SMALL_STATE(794)] = 28561, + [SMALL_STATE(795)] = 28596, + [SMALL_STATE(796)] = 28631, + [SMALL_STATE(797)] = 28700, + [SMALL_STATE(798)] = 28735, + [SMALL_STATE(799)] = 28802, + [SMALL_STATE(800)] = 28837, + [SMALL_STATE(801)] = 28872, + [SMALL_STATE(802)] = 28921, + [SMALL_STATE(803)] = 28986, + [SMALL_STATE(804)] = 29055, + [SMALL_STATE(805)] = 29124, + [SMALL_STATE(806)] = 29187, + [SMALL_STATE(807)] = 29250, + [SMALL_STATE(808)] = 29311, + [SMALL_STATE(809)] = 29370, + [SMALL_STATE(810)] = 29405, + [SMALL_STATE(811)] = 29462, + [SMALL_STATE(812)] = 29497, + [SMALL_STATE(813)] = 29566, + [SMALL_STATE(814)] = 29601, + [SMALL_STATE(815)] = 29636, + [SMALL_STATE(816)] = 29675, + [SMALL_STATE(817)] = 29710, + [SMALL_STATE(818)] = 29745, + [SMALL_STATE(819)] = 29784, + [SMALL_STATE(820)] = 29819, + [SMALL_STATE(821)] = 29872, + [SMALL_STATE(822)] = 29907, + [SMALL_STATE(823)] = 29942, + [SMALL_STATE(824)] = 29977, + [SMALL_STATE(825)] = 30046, + [SMALL_STATE(826)] = 30097, + [SMALL_STATE(827)] = 30166, + [SMALL_STATE(828)] = 30235, + [SMALL_STATE(829)] = 30304, + [SMALL_STATE(830)] = 30339, + [SMALL_STATE(831)] = 30374, + [SMALL_STATE(832)] = 30432, + [SMALL_STATE(833)] = 30487, + [SMALL_STATE(834)] = 30542, + [SMALL_STATE(835)] = 30597, + [SMALL_STATE(836)] = 30652, + [SMALL_STATE(837)] = 30707, + [SMALL_STATE(838)] = 30762, + [SMALL_STATE(839)] = 30817, + [SMALL_STATE(840)] = 30872, + [SMALL_STATE(841)] = 30927, + [SMALL_STATE(842)] = 30982, + [SMALL_STATE(843)] = 31037, + [SMALL_STATE(844)] = 31092, + [SMALL_STATE(845)] = 31138, + [SMALL_STATE(846)] = 31184, + [SMALL_STATE(847)] = 31230, + [SMALL_STATE(848)] = 31276, + [SMALL_STATE(849)] = 31311, + [SMALL_STATE(850)] = 31346, + [SMALL_STATE(851)] = 31381, + [SMALL_STATE(852)] = 31416, + [SMALL_STATE(853)] = 31467, + [SMALL_STATE(854)] = 31502, + [SMALL_STATE(855)] = 31550, + [SMALL_STATE(856)] = 31598, + [SMALL_STATE(857)] = 31646, + [SMALL_STATE(858)] = 31694, + [SMALL_STATE(859)] = 31742, + [SMALL_STATE(860)] = 31790, + [SMALL_STATE(861)] = 31838, + [SMALL_STATE(862)] = 31886, + [SMALL_STATE(863)] = 31934, + [SMALL_STATE(864)] = 31968, + [SMALL_STATE(865)] = 31997, + [SMALL_STATE(866)] = 32026, + [SMALL_STATE(867)] = 32055, + [SMALL_STATE(868)] = 32110, + [SMALL_STATE(869)] = 32139, + [SMALL_STATE(870)] = 32168, + [SMALL_STATE(871)] = 32197, + [SMALL_STATE(872)] = 32226, + [SMALL_STATE(873)] = 32281, + [SMALL_STATE(874)] = 32310, + [SMALL_STATE(875)] = 32339, + [SMALL_STATE(876)] = 32368, + [SMALL_STATE(877)] = 32411, + [SMALL_STATE(878)] = 32444, + [SMALL_STATE(879)] = 32473, + [SMALL_STATE(880)] = 32502, + [SMALL_STATE(881)] = 32533, + [SMALL_STATE(882)] = 32562, + [SMALL_STATE(883)] = 32595, + [SMALL_STATE(884)] = 32624, + [SMALL_STATE(885)] = 32653, + [SMALL_STATE(886)] = 32682, + [SMALL_STATE(887)] = 32711, + [SMALL_STATE(888)] = 32740, + [SMALL_STATE(889)] = 32783, + [SMALL_STATE(890)] = 32812, + [SMALL_STATE(891)] = 32841, + [SMALL_STATE(892)] = 32870, + [SMALL_STATE(893)] = 32904, + [SMALL_STATE(894)] = 32932, + [SMALL_STATE(895)] = 32972, + [SMALL_STATE(896)] = 33000, + [SMALL_STATE(897)] = 33048, + [SMALL_STATE(898)] = 33094, + [SMALL_STATE(899)] = 33140, + [SMALL_STATE(900)] = 33184, + [SMALL_STATE(901)] = 33226, + [SMALL_STATE(902)] = 33266, + [SMALL_STATE(903)] = 33306, + [SMALL_STATE(904)] = 33334, + [SMALL_STATE(905)] = 33370, + [SMALL_STATE(906)] = 33410, + [SMALL_STATE(907)] = 33438, + [SMALL_STATE(908)] = 33478, + [SMALL_STATE(909)] = 33506, + [SMALL_STATE(910)] = 33546, + [SMALL_STATE(911)] = 33586, + [SMALL_STATE(912)] = 33626, + [SMALL_STATE(913)] = 33666, + [SMALL_STATE(914)] = 33706, + [SMALL_STATE(915)] = 33756, + [SMALL_STATE(916)] = 33796, + [SMALL_STATE(917)] = 33836, + [SMALL_STATE(918)] = 33876, + [SMALL_STATE(919)] = 33916, + [SMALL_STATE(920)] = 33956, + [SMALL_STATE(921)] = 33996, + [SMALL_STATE(922)] = 34024, + [SMALL_STATE(923)] = 34052, + [SMALL_STATE(924)] = 34092, + [SMALL_STATE(925)] = 34132, + [SMALL_STATE(926)] = 34172, + [SMALL_STATE(927)] = 34204, + [SMALL_STATE(928)] = 34244, + [SMALL_STATE(929)] = 34284, + [SMALL_STATE(930)] = 34312, + [SMALL_STATE(931)] = 34352, + [SMALL_STATE(932)] = 34392, + [SMALL_STATE(933)] = 34432, + [SMALL_STATE(934)] = 34472, + [SMALL_STATE(935)] = 34500, + [SMALL_STATE(936)] = 34540, + [SMALL_STATE(937)] = 34580, + [SMALL_STATE(938)] = 34620, + [SMALL_STATE(939)] = 34648, + [SMALL_STATE(940)] = 34688, + [SMALL_STATE(941)] = 34728, + [SMALL_STATE(942)] = 34768, + [SMALL_STATE(943)] = 34808, + [SMALL_STATE(944)] = 34848, + [SMALL_STATE(945)] = 34888, + [SMALL_STATE(946)] = 34928, + [SMALL_STATE(947)] = 34976, + [SMALL_STATE(948)] = 35009, + [SMALL_STATE(949)] = 35052, + [SMALL_STATE(950)] = 35079, + [SMALL_STATE(951)] = 35124, + [SMALL_STATE(952)] = 35169, + [SMALL_STATE(953)] = 35196, + [SMALL_STATE(954)] = 35223, + [SMALL_STATE(955)] = 35268, + [SMALL_STATE(956)] = 35313, + [SMALL_STATE(957)] = 35358, + [SMALL_STATE(958)] = 35385, + [SMALL_STATE(959)] = 35412, + [SMALL_STATE(960)] = 35439, + [SMALL_STATE(961)] = 35470, + [SMALL_STATE(962)] = 35519, + [SMALL_STATE(963)] = 35546, + [SMALL_STATE(964)] = 35591, + [SMALL_STATE(965)] = 35640, + [SMALL_STATE(966)] = 35685, + [SMALL_STATE(967)] = 35730, + [SMALL_STATE(968)] = 35775, + [SMALL_STATE(969)] = 35802, + [SMALL_STATE(970)] = 35835, + [SMALL_STATE(971)] = 35870, + [SMALL_STATE(972)] = 35907, + [SMALL_STATE(973)] = 35934, + [SMALL_STATE(974)] = 35973, + [SMALL_STATE(975)] = 36002, + [SMALL_STATE(976)] = 36029, + [SMALL_STATE(977)] = 36070, + [SMALL_STATE(978)] = 36115, + [SMALL_STATE(979)] = 36154, + [SMALL_STATE(980)] = 36193, + [SMALL_STATE(981)] = 36232, + [SMALL_STATE(982)] = 36271, + [SMALL_STATE(983)] = 36310, + [SMALL_STATE(984)] = 36349, + [SMALL_STATE(985)] = 36388, + [SMALL_STATE(986)] = 36427, + [SMALL_STATE(987)] = 36466, + [SMALL_STATE(988)] = 36504, + [SMALL_STATE(989)] = 36542, + [SMALL_STATE(990)] = 36580, + [SMALL_STATE(991)] = 36618, + [SMALL_STATE(992)] = 36656, + [SMALL_STATE(993)] = 36688, + [SMALL_STATE(994)] = 36726, + [SMALL_STATE(995)] = 36757, + [SMALL_STATE(996)] = 36795, + [SMALL_STATE(997)] = 36833, + [SMALL_STATE(998)] = 36871, + [SMALL_STATE(999)] = 36892, + [SMALL_STATE(1000)] = 36913, + [SMALL_STATE(1001)] = 36951, + [SMALL_STATE(1002)] = 36989, + [SMALL_STATE(1003)] = 37027, + [SMALL_STATE(1004)] = 37059, + [SMALL_STATE(1005)] = 37091, + [SMALL_STATE(1006)] = 37123, + [SMALL_STATE(1007)] = 37155, + [SMALL_STATE(1008)] = 37187, + [SMALL_STATE(1009)] = 37219, + [SMALL_STATE(1010)] = 37257, + [SMALL_STATE(1011)] = 37289, + [SMALL_STATE(1012)] = 37321, + [SMALL_STATE(1013)] = 37353, + [SMALL_STATE(1014)] = 37376, + [SMALL_STATE(1015)] = 37405, + [SMALL_STATE(1016)] = 37432, + [SMALL_STATE(1017)] = 37467, + [SMALL_STATE(1018)] = 37494, + [SMALL_STATE(1019)] = 37523, + [SMALL_STATE(1020)] = 37552, + [SMALL_STATE(1021)] = 37579, + [SMALL_STATE(1022)] = 37608, + [SMALL_STATE(1023)] = 37637, + [SMALL_STATE(1024)] = 37666, + [SMALL_STATE(1025)] = 37695, + [SMALL_STATE(1026)] = 37718, + [SMALL_STATE(1027)] = 37747, + [SMALL_STATE(1028)] = 37776, + [SMALL_STATE(1029)] = 37811, + [SMALL_STATE(1030)] = 37840, + [SMALL_STATE(1031)] = 37863, + [SMALL_STATE(1032)] = 37892, + [SMALL_STATE(1033)] = 37915, + [SMALL_STATE(1034)] = 37944, + [SMALL_STATE(1035)] = 37973, + [SMALL_STATE(1036)] = 38002, + [SMALL_STATE(1037)] = 38031, + [SMALL_STATE(1038)] = 38060, + [SMALL_STATE(1039)] = 38089, + [SMALL_STATE(1040)] = 38116, + [SMALL_STATE(1041)] = 38151, + [SMALL_STATE(1042)] = 38183, + [SMALL_STATE(1043)] = 38215, + [SMALL_STATE(1044)] = 38237, + [SMALL_STATE(1045)] = 38263, + [SMALL_STATE(1046)] = 38295, + [SMALL_STATE(1047)] = 38327, + [SMALL_STATE(1048)] = 38353, + [SMALL_STATE(1049)] = 38379, + [SMALL_STATE(1050)] = 38397, + [SMALL_STATE(1051)] = 38415, + [SMALL_STATE(1052)] = 38433, + [SMALL_STATE(1053)] = 38459, + [SMALL_STATE(1054)] = 38486, + [SMALL_STATE(1055)] = 38515, + [SMALL_STATE(1056)] = 38544, + [SMALL_STATE(1057)] = 38565, + [SMALL_STATE(1058)] = 38594, + [SMALL_STATE(1059)] = 38623, + [SMALL_STATE(1060)] = 38648, + [SMALL_STATE(1061)] = 38677, + [SMALL_STATE(1062)] = 38702, + [SMALL_STATE(1063)] = 38723, + [SMALL_STATE(1064)] = 38744, + [SMALL_STATE(1065)] = 38765, + [SMALL_STATE(1066)] = 38794, + [SMALL_STATE(1067)] = 38823, + [SMALL_STATE(1068)] = 38848, + [SMALL_STATE(1069)] = 38877, + [SMALL_STATE(1070)] = 38902, + [SMALL_STATE(1071)] = 38927, + [SMALL_STATE(1072)] = 38948, + [SMALL_STATE(1073)] = 38972, + [SMALL_STATE(1074)] = 38988, + [SMALL_STATE(1075)] = 39014, + [SMALL_STATE(1076)] = 39030, + [SMALL_STATE(1077)] = 39056, + [SMALL_STATE(1078)] = 39072, + [SMALL_STATE(1079)] = 39088, + [SMALL_STATE(1080)] = 39108, + [SMALL_STATE(1081)] = 39134, + [SMALL_STATE(1082)] = 39160, + [SMALL_STATE(1083)] = 39184, + [SMALL_STATE(1084)] = 39200, + [SMALL_STATE(1085)] = 39216, + [SMALL_STATE(1086)] = 39231, + [SMALL_STATE(1087)] = 39246, + [SMALL_STATE(1088)] = 39261, + [SMALL_STATE(1089)] = 39284, + [SMALL_STATE(1090)] = 39299, + [SMALL_STATE(1091)] = 39322, + [SMALL_STATE(1092)] = 39337, + [SMALL_STATE(1093)] = 39352, + [SMALL_STATE(1094)] = 39367, + [SMALL_STATE(1095)] = 39382, + [SMALL_STATE(1096)] = 39405, + [SMALL_STATE(1097)] = 39419, + [SMALL_STATE(1098)] = 39433, + [SMALL_STATE(1099)] = 39447, + [SMALL_STATE(1100)] = 39465, + [SMALL_STATE(1101)] = 39479, + [SMALL_STATE(1102)] = 39493, + [SMALL_STATE(1103)] = 39507, + [SMALL_STATE(1104)] = 39521, + [SMALL_STATE(1105)] = 39535, + [SMALL_STATE(1106)] = 39553, + [SMALL_STATE(1107)] = 39572, + [SMALL_STATE(1108)] = 39589, + [SMALL_STATE(1109)] = 39606, + [SMALL_STATE(1110)] = 39625, + [SMALL_STATE(1111)] = 39642, + [SMALL_STATE(1112)] = 39661, + [SMALL_STATE(1113)] = 39680, + [SMALL_STATE(1114)] = 39697, + [SMALL_STATE(1115)] = 39716, + [SMALL_STATE(1116)] = 39732, + [SMALL_STATE(1117)] = 39742, + [SMALL_STATE(1118)] = 39758, + [SMALL_STATE(1119)] = 39774, + [SMALL_STATE(1120)] = 39784, + [SMALL_STATE(1121)] = 39794, + [SMALL_STATE(1122)] = 39804, + [SMALL_STATE(1123)] = 39820, + [SMALL_STATE(1124)] = 39836, + [SMALL_STATE(1125)] = 39846, + [SMALL_STATE(1126)] = 39860, + [SMALL_STATE(1127)] = 39876, + [SMALL_STATE(1128)] = 39892, + [SMALL_STATE(1129)] = 39902, + [SMALL_STATE(1130)] = 39918, + [SMALL_STATE(1131)] = 39934, + [SMALL_STATE(1132)] = 39944, + [SMALL_STATE(1133)] = 39960, + [SMALL_STATE(1134)] = 39976, + [SMALL_STATE(1135)] = 39986, + [SMALL_STATE(1136)] = 40002, + [SMALL_STATE(1137)] = 40016, + [SMALL_STATE(1138)] = 40032, + [SMALL_STATE(1139)] = 40042, + [SMALL_STATE(1140)] = 40058, + [SMALL_STATE(1141)] = 40074, + [SMALL_STATE(1142)] = 40084, + [SMALL_STATE(1143)] = 40094, + [SMALL_STATE(1144)] = 40110, + [SMALL_STATE(1145)] = 40126, + [SMALL_STATE(1146)] = 40142, + [SMALL_STATE(1147)] = 40158, + [SMALL_STATE(1148)] = 40168, + [SMALL_STATE(1149)] = 40184, + [SMALL_STATE(1150)] = 40197, + [SMALL_STATE(1151)] = 40210, + [SMALL_STATE(1152)] = 40223, + [SMALL_STATE(1153)] = 40236, + [SMALL_STATE(1154)] = 40249, + [SMALL_STATE(1155)] = 40262, + [SMALL_STATE(1156)] = 40275, + [SMALL_STATE(1157)] = 40288, + [SMALL_STATE(1158)] = 40301, + [SMALL_STATE(1159)] = 40314, + [SMALL_STATE(1160)] = 40327, + [SMALL_STATE(1161)] = 40340, + [SMALL_STATE(1162)] = 40353, + [SMALL_STATE(1163)] = 40366, + [SMALL_STATE(1164)] = 40379, + [SMALL_STATE(1165)] = 40392, + [SMALL_STATE(1166)] = 40405, + [SMALL_STATE(1167)] = 40418, + [SMALL_STATE(1168)] = 40431, + [SMALL_STATE(1169)] = 40444, + [SMALL_STATE(1170)] = 40457, + [SMALL_STATE(1171)] = 40470, + [SMALL_STATE(1172)] = 40483, + [SMALL_STATE(1173)] = 40496, + [SMALL_STATE(1174)] = 40509, + [SMALL_STATE(1175)] = 40522, + [SMALL_STATE(1176)] = 40535, + [SMALL_STATE(1177)] = 40548, + [SMALL_STATE(1178)] = 40561, + [SMALL_STATE(1179)] = 40574, + [SMALL_STATE(1180)] = 40587, + [SMALL_STATE(1181)] = 40600, + [SMALL_STATE(1182)] = 40613, + [SMALL_STATE(1183)] = 40626, + [SMALL_STATE(1184)] = 40639, + [SMALL_STATE(1185)] = 40652, + [SMALL_STATE(1186)] = 40661, + [SMALL_STATE(1187)] = 40674, + [SMALL_STATE(1188)] = 40687, + [SMALL_STATE(1189)] = 40700, + [SMALL_STATE(1190)] = 40713, + [SMALL_STATE(1191)] = 40724, + [SMALL_STATE(1192)] = 40737, + [SMALL_STATE(1193)] = 40750, + [SMALL_STATE(1194)] = 40763, + [SMALL_STATE(1195)] = 40776, + [SMALL_STATE(1196)] = 40789, + [SMALL_STATE(1197)] = 40802, + [SMALL_STATE(1198)] = 40815, + [SMALL_STATE(1199)] = 40828, + [SMALL_STATE(1200)] = 40841, + [SMALL_STATE(1201)] = 40852, + [SMALL_STATE(1202)] = 40865, + [SMALL_STATE(1203)] = 40878, + [SMALL_STATE(1204)] = 40891, + [SMALL_STATE(1205)] = 40904, + [SMALL_STATE(1206)] = 40917, + [SMALL_STATE(1207)] = 40930, + [SMALL_STATE(1208)] = 40939, + [SMALL_STATE(1209)] = 40952, + [SMALL_STATE(1210)] = 40960, + [SMALL_STATE(1211)] = 40970, + [SMALL_STATE(1212)] = 40978, + [SMALL_STATE(1213)] = 40988, + [SMALL_STATE(1214)] = 40996, + [SMALL_STATE(1215)] = 41006, + [SMALL_STATE(1216)] = 41016, + [SMALL_STATE(1217)] = 41026, + [SMALL_STATE(1218)] = 41034, + [SMALL_STATE(1219)] = 41044, + [SMALL_STATE(1220)] = 41054, + [SMALL_STATE(1221)] = 41062, + [SMALL_STATE(1222)] = 41072, + [SMALL_STATE(1223)] = 41080, + [SMALL_STATE(1224)] = 41090, + [SMALL_STATE(1225)] = 41098, + [SMALL_STATE(1226)] = 41108, + [SMALL_STATE(1227)] = 41118, + [SMALL_STATE(1228)] = 41128, + [SMALL_STATE(1229)] = 41136, + [SMALL_STATE(1230)] = 41144, + [SMALL_STATE(1231)] = 41154, + [SMALL_STATE(1232)] = 41164, + [SMALL_STATE(1233)] = 41172, + [SMALL_STATE(1234)] = 41180, + [SMALL_STATE(1235)] = 41190, + [SMALL_STATE(1236)] = 41198, + [SMALL_STATE(1237)] = 41206, + [SMALL_STATE(1238)] = 41214, + [SMALL_STATE(1239)] = 41224, + [SMALL_STATE(1240)] = 41232, + [SMALL_STATE(1241)] = 41242, + [SMALL_STATE(1242)] = 41250, + [SMALL_STATE(1243)] = 41260, + [SMALL_STATE(1244)] = 41270, + [SMALL_STATE(1245)] = 41280, + [SMALL_STATE(1246)] = 41290, + [SMALL_STATE(1247)] = 41300, + [SMALL_STATE(1248)] = 41310, + [SMALL_STATE(1249)] = 41320, + [SMALL_STATE(1250)] = 41330, + [SMALL_STATE(1251)] = 41340, + [SMALL_STATE(1252)] = 41350, + [SMALL_STATE(1253)] = 41360, + [SMALL_STATE(1254)] = 41370, + [SMALL_STATE(1255)] = 41380, + [SMALL_STATE(1256)] = 41390, + [SMALL_STATE(1257)] = 41400, + [SMALL_STATE(1258)] = 41408, + [SMALL_STATE(1259)] = 41418, + [SMALL_STATE(1260)] = 41428, + [SMALL_STATE(1261)] = 41436, + [SMALL_STATE(1262)] = 41446, + [SMALL_STATE(1263)] = 41456, + [SMALL_STATE(1264)] = 41464, + [SMALL_STATE(1265)] = 41474, + [SMALL_STATE(1266)] = 41484, + [SMALL_STATE(1267)] = 41494, + [SMALL_STATE(1268)] = 41504, + [SMALL_STATE(1269)] = 41514, + [SMALL_STATE(1270)] = 41524, + [SMALL_STATE(1271)] = 41534, + [SMALL_STATE(1272)] = 41541, + [SMALL_STATE(1273)] = 41548, + [SMALL_STATE(1274)] = 41555, + [SMALL_STATE(1275)] = 41562, + [SMALL_STATE(1276)] = 41569, + [SMALL_STATE(1277)] = 41576, + [SMALL_STATE(1278)] = 41583, + [SMALL_STATE(1279)] = 41590, + [SMALL_STATE(1280)] = 41597, + [SMALL_STATE(1281)] = 41604, + [SMALL_STATE(1282)] = 41611, + [SMALL_STATE(1283)] = 41618, + [SMALL_STATE(1284)] = 41625, + [SMALL_STATE(1285)] = 41632, + [SMALL_STATE(1286)] = 41639, + [SMALL_STATE(1287)] = 41646, + [SMALL_STATE(1288)] = 41653, + [SMALL_STATE(1289)] = 41660, + [SMALL_STATE(1290)] = 41667, + [SMALL_STATE(1291)] = 41674, + [SMALL_STATE(1292)] = 41681, + [SMALL_STATE(1293)] = 41688, + [SMALL_STATE(1294)] = 41695, + [SMALL_STATE(1295)] = 41702, + [SMALL_STATE(1296)] = 41709, + [SMALL_STATE(1297)] = 41716, + [SMALL_STATE(1298)] = 41723, + [SMALL_STATE(1299)] = 41730, + [SMALL_STATE(1300)] = 41737, + [SMALL_STATE(1301)] = 41744, + [SMALL_STATE(1302)] = 41751, + [SMALL_STATE(1303)] = 41758, + [SMALL_STATE(1304)] = 41765, + [SMALL_STATE(1305)] = 41772, + [SMALL_STATE(1306)] = 41779, + [SMALL_STATE(1307)] = 41786, + [SMALL_STATE(1308)] = 41793, + [SMALL_STATE(1309)] = 41800, + [SMALL_STATE(1310)] = 41807, + [SMALL_STATE(1311)] = 41814, + [SMALL_STATE(1312)] = 41821, + [SMALL_STATE(1313)] = 41828, + [SMALL_STATE(1314)] = 41835, + [SMALL_STATE(1315)] = 41842, + [SMALL_STATE(1316)] = 41849, + [SMALL_STATE(1317)] = 41856, + [SMALL_STATE(1318)] = 41863, + [SMALL_STATE(1319)] = 41870, + [SMALL_STATE(1320)] = 41877, + [SMALL_STATE(1321)] = 41884, + [SMALL_STATE(1322)] = 41891, + [SMALL_STATE(1323)] = 41898, + [SMALL_STATE(1324)] = 41905, + [SMALL_STATE(1325)] = 41912, + [SMALL_STATE(1326)] = 41919, + [SMALL_STATE(1327)] = 41926, + [SMALL_STATE(1328)] = 41933, + [SMALL_STATE(1329)] = 41940, + [SMALL_STATE(1330)] = 41947, + [SMALL_STATE(1331)] = 41954, + [SMALL_STATE(1332)] = 41961, + [SMALL_STATE(1333)] = 41968, + [SMALL_STATE(1334)] = 41975, + [SMALL_STATE(1335)] = 41982, + [SMALL_STATE(1336)] = 41989, + [SMALL_STATE(1337)] = 41996, + [SMALL_STATE(1338)] = 42003, + [SMALL_STATE(1339)] = 42010, + [SMALL_STATE(1340)] = 42017, + [SMALL_STATE(1341)] = 42024, + [SMALL_STATE(1342)] = 42031, + [SMALL_STATE(1343)] = 42038, + [SMALL_STATE(1344)] = 42045, + [SMALL_STATE(1345)] = 42052, + [SMALL_STATE(1346)] = 42059, + [SMALL_STATE(1347)] = 42066, + [SMALL_STATE(1348)] = 42073, + [SMALL_STATE(1349)] = 42080, + [SMALL_STATE(1350)] = 42087, + [SMALL_STATE(1351)] = 42094, + [SMALL_STATE(1352)] = 42101, + [SMALL_STATE(1353)] = 42108, + [SMALL_STATE(1354)] = 42115, + [SMALL_STATE(1355)] = 42122, + [SMALL_STATE(1356)] = 42129, + [SMALL_STATE(1357)] = 42136, + [SMALL_STATE(1358)] = 42143, + [SMALL_STATE(1359)] = 42150, + [SMALL_STATE(1360)] = 42157, + [SMALL_STATE(1361)] = 42164, + [SMALL_STATE(1362)] = 42171, + [SMALL_STATE(1363)] = 42178, + [SMALL_STATE(1364)] = 42185, + [SMALL_STATE(1365)] = 42192, + [SMALL_STATE(1366)] = 42199, + [SMALL_STATE(1367)] = 42206, + [SMALL_STATE(1368)] = 42213, + [SMALL_STATE(1369)] = 42220, + [SMALL_STATE(1370)] = 42227, + [SMALL_STATE(1371)] = 42234, + [SMALL_STATE(1372)] = 42241, + [SMALL_STATE(1373)] = 42248, + [SMALL_STATE(1374)] = 42255, + [SMALL_STATE(1375)] = 42262, + [SMALL_STATE(1376)] = 42269, + [SMALL_STATE(1377)] = 42276, + [SMALL_STATE(1378)] = 42283, + [SMALL_STATE(1379)] = 42290, + [SMALL_STATE(1380)] = 42297, + [SMALL_STATE(1381)] = 42304, + [SMALL_STATE(1382)] = 42311, + [SMALL_STATE(1383)] = 42318, + [SMALL_STATE(1384)] = 42325, + [SMALL_STATE(1385)] = 42332, + [SMALL_STATE(1386)] = 42339, + [SMALL_STATE(1387)] = 42346, + [SMALL_STATE(1388)] = 42353, + [SMALL_STATE(1389)] = 42360, + [SMALL_STATE(1390)] = 42367, + [SMALL_STATE(1391)] = 42374, + [SMALL_STATE(1392)] = 42381, + [SMALL_STATE(1393)] = 42388, + [SMALL_STATE(1394)] = 42395, + [SMALL_STATE(1395)] = 42402, + [SMALL_STATE(1396)] = 42409, + [SMALL_STATE(1397)] = 42416, + [SMALL_STATE(1398)] = 42423, + [SMALL_STATE(1399)] = 42430, + [SMALL_STATE(1400)] = 42437, + [SMALL_STATE(1401)] = 42444, + [SMALL_STATE(1402)] = 42451, + [SMALL_STATE(1403)] = 42458, + [SMALL_STATE(1404)] = 42465, + [SMALL_STATE(1405)] = 42472, + [SMALL_STATE(1406)] = 42479, + [SMALL_STATE(1407)] = 42486, + [SMALL_STATE(1408)] = 42493, + [SMALL_STATE(1409)] = 42500, + [SMALL_STATE(1410)] = 42507, + [SMALL_STATE(1411)] = 42514, + [SMALL_STATE(1412)] = 42521, + [SMALL_STATE(1413)] = 42528, + [SMALL_STATE(1414)] = 42535, + [SMALL_STATE(1415)] = 42542, + [SMALL_STATE(1416)] = 42549, + [SMALL_STATE(1417)] = 42556, + [SMALL_STATE(1418)] = 42563, + [SMALL_STATE(1419)] = 42570, + [SMALL_STATE(1420)] = 42577, + [SMALL_STATE(1421)] = 42584, + [SMALL_STATE(1422)] = 42591, + [SMALL_STATE(1423)] = 42598, + [SMALL_STATE(1424)] = 42605, + [SMALL_STATE(1425)] = 42612, + [SMALL_STATE(1426)] = 42619, + [SMALL_STATE(1427)] = 42626, + [SMALL_STATE(1428)] = 42633, + [SMALL_STATE(1429)] = 42640, + [SMALL_STATE(1430)] = 42647, + [SMALL_STATE(1431)] = 42654, + [SMALL_STATE(1432)] = 42661, + [SMALL_STATE(1433)] = 42668, + [SMALL_STATE(1434)] = 42675, + [SMALL_STATE(1435)] = 42682, + [SMALL_STATE(1436)] = 42689, + [SMALL_STATE(1437)] = 42696, + [SMALL_STATE(1438)] = 42703, + [SMALL_STATE(1439)] = 42710, + [SMALL_STATE(1440)] = 42717, + [SMALL_STATE(1441)] = 42724, + [SMALL_STATE(1442)] = 42731, + [SMALL_STATE(1443)] = 42738, + [SMALL_STATE(1444)] = 42745, + [SMALL_STATE(1445)] = 42752, + [SMALL_STATE(1446)] = 42759, + [SMALL_STATE(1447)] = 42766, + [SMALL_STATE(1448)] = 42773, + [SMALL_STATE(1449)] = 42780, + [SMALL_STATE(1450)] = 42787, + [SMALL_STATE(1451)] = 42794, + [SMALL_STATE(1452)] = 42801, + [SMALL_STATE(1453)] = 42808, + [SMALL_STATE(1454)] = 42815, + [SMALL_STATE(1455)] = 42822, + [SMALL_STATE(1456)] = 42829, + [SMALL_STATE(1457)] = 42836, + [SMALL_STATE(1458)] = 42843, + [SMALL_STATE(1459)] = 42850, + [SMALL_STATE(1460)] = 42857, + [SMALL_STATE(1461)] = 42864, + [SMALL_STATE(1462)] = 42871, + [SMALL_STATE(1463)] = 42878, + [SMALL_STATE(1464)] = 42885, + [SMALL_STATE(1465)] = 42892, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -73981,1629 +74113,1629 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(407), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1070), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1365), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(930), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(404), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1064), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1371), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(910), [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1366), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1225), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(378), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(582), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(582), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(580), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(70), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(862), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(805), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1449), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1266), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1446), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(884), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(688), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(685), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(785), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(882), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1154), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1112), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1111), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1218), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(607), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1325), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1372), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(374), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(554), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(554), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(559), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(88), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(859), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(787), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1461), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1268), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1458), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(879), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(686), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(687), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(758), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(884), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1156), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1114), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1112), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1269), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1221), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(558), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1462), [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1267), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(237), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1451), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(468), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1450), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1447), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1372), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(568), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(536), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(589), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(139), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1463), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(485), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1459), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1456), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1378), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(511), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(512), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(513), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1257), [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1122), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(589), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(405), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1064), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1395), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(899), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1452), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1270), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(271), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(857), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(744), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1265), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(564), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1438), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1257), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(128), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1435), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(442), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1434), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1432), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1431), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(403), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1062), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(906), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1306), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1269), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(142), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(859), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(801), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1255), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1244), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(591), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1436), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(278), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1448), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(474), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1443), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1444), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1312), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(401), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1053), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1409), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(937), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1392), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1268), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(274), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(860), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(823), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1222), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1233), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(603), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1286), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1224), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(134), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(460), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1322), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1321), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1396), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(402), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(513), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(407), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1062), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1421), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(935), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1401), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(155), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(862), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(815), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1225), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1234), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(531), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1332), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1227), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(131), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1465), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(444), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1330), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1322), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1405), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(405), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1071), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1404), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(945), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1464), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1212), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(158), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(861), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(784), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1265), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1259), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(507), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1450), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1258), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(200), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1447), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(464), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1446), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1444), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1443), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(408), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1063), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1271), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(942), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1309), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1270), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(236), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(855), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(763), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1264), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1244), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(528), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1266), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(162), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1460), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(483), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1335), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1343), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1315), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(378), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(582), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(582), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(580), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(70), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(862), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(688), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1449), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1266), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1446), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(685), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(785), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(882), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1154), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1112), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1111), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1253), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1218), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(374), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(554), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(554), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(559), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(88), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(859), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(686), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1461), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1268), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1458), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(687), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(758), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(884), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1156), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1114), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1112), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1269), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1221), [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1267), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(237), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1451), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(468), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1450), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1447), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1372), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(536), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(589), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1256), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(139), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1463), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(485), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1459), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1456), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1378), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(511), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1257), [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1122), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(589), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(404), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(142), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(859), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1255), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1244), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1262), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(278), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1448), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(474), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1443), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1444), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1312), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(408), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(271), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(857), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1265), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1260), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1257), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(128), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1435), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(442), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1434), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1432), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1431), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(274), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(860), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(36), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1222), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1233), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1224), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(134), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1453), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(460), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1322), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1321), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1396), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(401), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(158), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(861), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1265), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1259), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1258), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(200), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1447), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(464), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1446), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1444), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1443), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(403), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(155), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(862), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1225), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1234), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1227), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(131), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1465), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(444), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1330), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1322), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1405), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(402), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(236), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(855), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1264), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1244), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1266), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(162), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1460), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(483), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1335), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1343), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1315), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 78), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 78), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 84), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 84), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 83), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 83), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 82), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 82), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 58), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 58), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 61), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 61), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 62), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 62), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 80), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 80), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 79), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 79), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 69), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 69), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 70), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 70), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 71), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 71), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 75), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 75), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 66), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 66), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 54), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 54), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 71), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 71), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 58), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 58), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 59), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 59), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 61), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 61), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 62), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 62), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 69), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 69), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 70), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 70), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 75), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 75), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 78), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 78), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 79), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 79), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 80), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 80), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 82), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 82), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 83), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 83), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 84), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 84), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 53), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 51), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 51), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 66), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 66), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(617), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(378), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(582), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(582), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(580), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(271), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1245), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(23), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1265), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1260), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(564), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1438), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1257), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(128), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1435), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(442), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1434), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1432), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1431), - [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(568), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(536), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(589), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1256), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 54), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 54), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(612), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(374), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(554), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(554), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(559), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(155), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1246), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(35), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1225), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1234), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(531), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1332), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1227), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(131), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1465), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(444), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1330), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1322), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1405), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(511), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(512), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(513), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1257), [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1122), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(589), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(611), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(70), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1253), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1218), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(607), - [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1325), - [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1267), - [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(237), - [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1451), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(468), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1450), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1447), - [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1372), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(612), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(274), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(36), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1222), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1233), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(603), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1286), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1224), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(134), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1453), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(460), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1322), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1321), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1396), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(513), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(616), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(158), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1265), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1259), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(507), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1450), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1258), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(200), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1447), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(464), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1446), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1444), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1443), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(617), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(88), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(25), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1269), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1221), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(558), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1462), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1267), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(139), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1463), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(485), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1459), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1456), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1378), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(615), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(142), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1255), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(236), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(27), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1264), [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1244), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(591), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1436), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1262), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(278), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1448), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(474), - [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1443), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1444), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1312), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(528), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1453), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1266), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(162), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1460), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(483), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1335), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1343), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1315), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1441] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(850), + [1441] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(852), [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(864), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1410), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(922), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1339), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1259), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(688), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1449), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1217), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1446), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(685), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(785), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(882), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1154), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1112), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1111), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1391), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(926), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1363), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1220), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1411), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(940), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1381), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1254), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1122), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(880), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1422), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(911), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1342), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1255), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(686), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1461), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1219), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1458), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(687), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(758), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(884), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1156), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1114), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1112), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1400), + [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(894), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1369), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1223), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1423), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(919), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1387), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1253), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1122), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 65), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(688), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1449), - [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1217), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1446), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(685), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(686), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1461), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1219), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1458), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(687), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(661), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(662), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 54), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 66), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 74), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 60), [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 60), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(883), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(830), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 74), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(889), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(818), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(850), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(685), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(852), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(687), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2618] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(850), - [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(999), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(998), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2576] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(852), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(998), + [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(999), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1266), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 72), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1449), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 63), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 63), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1268), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1461), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 72), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 72), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 63), [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 63), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 72), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 72), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 63), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 64), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 64), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 73), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 73), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 72), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 73), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 73), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 64), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 64), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 64), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 73), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(604), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1277), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(607), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1278), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 64), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 73), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 64), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 56), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 56), [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 57), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 67), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), - [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1022), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1139), - [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1139), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 73), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1021), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1209), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(504), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(911), - [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1234), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(415), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(618), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1005), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1221), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 68), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 67), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1019), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1140), + [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1140), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 73), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1038), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1214), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(553), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(902), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(415), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1237), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1007), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1226), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(618), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 68), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 54), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 54), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 66), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 66), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 54), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 66), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3517] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 54), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 66), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3521] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), }; #ifdef __cplusplus From 0720f9c2af2a97dcd0e9ed90324d1baba68b2849 Mon Sep 17 00:00:00 2001 From: John Drouhard Date: Sun, 24 Jul 2022 12:29:08 -0500 Subject: [PATCH 6/8] Add test for comma expression in iteration expression --- test/corpus/statements.txt | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 2b87ddf1c..45a42f311 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -43,7 +43,7 @@ int main() { for (start(); check(); step()) 3; - for (i = 0, j = 0, k = 0, l = 0; i < 1; i++, j++, k++, l++) + for (i = 0, j = 0, k = 0, l = 0; i < 1, j < 1; i++, j++, k++, l++) 1; } @@ -76,9 +76,13 @@ int main() { (comma_expression (assignment_expression (identifier) (number_literal)) (assignment_expression (identifier) (number_literal))))) - (binary_expression - (identifier) - (number_literal)) + (comma_expression + (binary_expression + (identifier) + (number_literal)) + (binary_expression + (identifier) + (number_literal))) (comma_expression (update_expression (identifier)) (comma_expression From 7175a6dd5fc1cee660dce6fe23f6043d75af424a Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 1 Aug 2022 15:02:27 -0700 Subject: [PATCH 7/8] 0.20.2 --- Cargo.toml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index adfdfd81b..9e2e88ced 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-c" description = "C grammar for the tree-sitter parsing library" -version = "0.20.1" +version = "0.20.2" authors = ["Max Brunsfeld "] license = "MIT" readme = "bindings/rust/README.md" diff --git a/package.json b/package.json index d276d459e..707facfe4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-c", - "version": "0.20.1", + "version": "0.20.2", "description": "C grammar for node-tree-sitter", "main": "bindings/node", "keywords": [ From 632c68e42cff1d4b15722bed922e7fb31fc6258a Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Tue, 21 Feb 2023 15:16:54 +0100 Subject: [PATCH 8/8] Add an action to publish the grammar automatically --- .github/workflows/publish_crate.yml | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/publish_crate.yml diff --git a/.github/workflows/publish_crate.yml b/.github/workflows/publish_crate.yml new file mode 100644 index 000000000..cec684b5d --- /dev/null +++ b/.github/workflows/publish_crate.yml @@ -0,0 +1,33 @@ +name: Publish on crates.io + +on: + push: + tags: + - v* + +env: + CARGO_TERM_COLOR: always + CARGO_INCREMENTAL: 0 + +jobs: + publish: + + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Install Rust stable + run: | + rustup toolchain install stable --profile minimal --no-self-update + + - name: Verify publish crate + uses: katyo/publish-crates@v1 + with: + dry-run: true + + - name: Publish crate + uses: katyo/publish-crates@v1 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}